#[repr(u32)]pub enum Severity {
Debug = 0,
Info = 1,
Warn = 2,
WarnAlways = 3,
Error = 4,
}Expand description
Indicates the severity of a FoundationDB log entry
Variants§
Debug = 0
debug
Info = 1
info
Warn = 2
warn
WarnAlways = 3
warn always
Error = 4
error, this severity automatically breaks execution
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Severity
impl RefUnwindSafe for Severity
impl Send for Severity
impl Sync for Severity
impl Unpin for Severity
impl UnwindSafe for Severity
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