pub enum LogLevel {
Ignore,
Warn,
Error,
}
Expand description
Specifies how schedule construction should respond to detecting a certain kind of issue.
Variants§
Ignore
Occurrences are completely ignored.
Warn
Occurrences are logged only.
Error
Occurrences are logged and result in errors.
Trait Implementations§
impl StructuralPartialEq for LogLevel
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnwindSafe for LogLevel
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