pub struct Anomaly {
pub severity: Severity,
pub code: &'static str,
pub note: String,
}Expand description
A classified observation with a stable code and note.
Fields§
§severity: SeveritySeverity.
code: &'static strStable, scheme-prefixed machine code.
note: StringHuman-readable note including the offending value.
Trait Implementations§
impl Eq for Anomaly
impl StructuralPartialEq for Anomaly
Auto Trait Implementations§
impl Freeze for Anomaly
impl RefUnwindSafe for Anomaly
impl Send for Anomaly
impl Sync for Anomaly
impl Unpin for Anomaly
impl UnsafeUnpin for Anomaly
impl UnwindSafe for Anomaly
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