pub enum LogValue {
Null,
Bool(bool),
I64(i64),
U64(u64),
F64(f64),
String(String),
Array(Vec<LogValue>),
Map(BTreeMap<String, LogValue>),
DateTime(OffsetDateTime),
Deferred(Arc<dyn DeferredValue>),
}Variants§
Null
Bool(bool)
I64(i64)
U64(u64)
F64(f64)
String(String)
Array(Vec<LogValue>)
Map(BTreeMap<String, LogValue>)
DateTime(OffsetDateTime)
Deferred(Arc<dyn DeferredValue>)
Trait Implementations§
Source§impl From<OffsetDateTime> for LogValue
impl From<OffsetDateTime> for LogValue
Source§fn from(value: OffsetDateTime) -> Self
fn from(value: OffsetDateTime) -> Self
Converts to this type from the input type.
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