helix-mods/helix-core/src/diagnostic.rs
Ivan Tham 7cc13fefe9 Derive debug without feature
Note that this also removed those `finish_non_exhaustive()`.
2021-06-10 22:00:08 +09:00

22 lines
327 B
Rust

#[derive(Debug, Eq, PartialEq)]
pub enum Severity {
Error,
Warning,
Info,
Hint,
}
#[derive(Debug)]
pub struct Range {
pub start: usize,
pub end: usize,
}
#[derive(Debug)]
pub struct Diagnostic {
pub range: Range,
pub line: usize,
pub message: String,
pub severity: Option<Severity>,
}