pub enum AnnotationSeverity {
Error,
Warning,
Info,
Hint,
}Expand description
Severity levels for coverage and diagnostic annotations
Variants§
Error
Critical issue that must be addressed
Warning
Potential problem that should be reviewed
Info
Informational message
Hint
Subtle suggestion or hint
Trait Implementations§
Source§impl Clone for AnnotationSeverity
impl Clone for AnnotationSeverity
Source§fn clone(&self) -> AnnotationSeverity
fn clone(&self) -> AnnotationSeverity
Returns a duplicate of the value. Read more
1.0.0 · 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 AnnotationSeverity
impl RefUnwindSafe for AnnotationSeverity
impl Send for AnnotationSeverity
impl Sync for AnnotationSeverity
impl Unpin for AnnotationSeverity
impl UnsafeUnpin for AnnotationSeverity
impl UnwindSafe for AnnotationSeverity
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