pub enum LogValue {
String(String),
I64(i64),
U64(u64),
F64(f64),
Bool(bool),
}Variants§
Trait Implementations§
impl StructuralPartialEq for LogValue
Auto Trait Implementations§
impl Freeze for LogValue
impl RefUnwindSafe for LogValue
impl Send for LogValue
impl Sync for LogValue
impl Unpin for LogValue
impl UnsafeUnpin for LogValue
impl UnwindSafe for LogValue
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