pub enum BogLevel {
NOTE,
ERROR,
WARN,
INFO,
_WRN,
_NFO,
DEBUG,
EMPTY,
___,
CUSTOM(&'static str),
}Variants§
NOTE
ERROR
WARN
INFO
_WRN
Low priority warn
_NFO
Low priority info
DEBUG
EMPTY
___
CUSTOM(&'static str)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BogLevel
impl RefUnwindSafe for BogLevel
impl Send for BogLevel
impl Sync for BogLevel
impl Unpin for BogLevel
impl UnsafeUnpin for BogLevel
impl UnwindSafe for BogLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> TransformExt for T
impl<T> TransformExt for T
fn transform<Q>(self, transform: impl FnOnce(T) -> Q) -> Q
fn modify<Q>(self, modify: impl FnOnce(&mut T) -> Q) -> T
Source§fn modify_if<Q>(self, condition: bool, modify: impl FnOnce(&mut T) -> Q) -> T
fn modify_if<Q>(self, condition: bool, modify: impl FnOnce(&mut T) -> Q) -> T
Example Read more