pub struct Diagnostic {
pub path: PathBuf,
pub line: usize,
pub col: usize,
pub severity: Severity,
pub message: String,
pub rule: &'static str,
pub difficulty: Difficulty,
}Fields§
§path: PathBuf§line: usize§col: usize§severity: Severity§message: String§rule: &'static strRule identifier in <validator>/<category>/<slug> form. Empty string
means the rule is unclassified (always shown regardless of difficulty).
difficulty: DifficultyDifficulty tier that gates this diagnostic.
Implementations§
Source§impl Diagnostic
impl Diagnostic
pub fn error( path: impl Into<PathBuf>, line: usize, col: usize, message: impl Into<String>, ) -> Self
pub fn warning( path: impl Into<PathBuf>, line: usize, col: usize, message: impl Into<String>, ) -> Self
Sourcepub fn with_rule(self, rule: &'static str, difficulty: Difficulty) -> Self
pub fn with_rule(self, rule: &'static str, difficulty: Difficulty) -> Self
Set the rule ID and difficulty tier for this diagnostic.
pub fn gnu_format(&self) -> String
Trait Implementations§
Source§impl Clone for Diagnostic
impl Clone for Diagnostic
Source§fn clone(&self) -> Diagnostic
fn clone(&self) -> Diagnostic
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Diagnostic
impl RefUnwindSafe for Diagnostic
impl Send for Diagnostic
impl Sync for Diagnostic
impl Unpin for Diagnostic
impl UnsafeUnpin for Diagnostic
impl UnwindSafe for Diagnostic
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more