pub enum NumLog {
None,
S(&'static str),
I(i64),
F(f64),
Str(LogStr),
Dur(Duration),
Time(NaiveTime),
}
Variants§
Implementations§
Trait Implementations§
Source§impl IntoNumLog for NumLog
impl IntoNumLog for NumLog
fn into_num_log(self) -> NumLog
impl Copy for NumLog
impl StructuralPartialEq for NumLog
Auto Trait Implementations§
impl Freeze for NumLog
impl RefUnwindSafe for NumLog
impl Send for NumLog
impl Sync for NumLog
impl Unpin for NumLog
impl UnwindSafe for NumLog
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