pub enum LogValue {
String(String),
Int(i64),
Float(f64),
Bool(bool),
Null,
}Expand description
Log field value
Variants§
Trait Implementations§
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