pub enum LogCell {
Text(String),
Number(i64),
Float(f64),
Bool(bool),
Null,
}Expand description
A single typed log cell.
Variants§
Trait Implementations§
impl StructuralPartialEq for LogCell
Auto Trait Implementations§
impl Freeze for LogCell
impl RefUnwindSafe for LogCell
impl Send for LogCell
impl Sync for LogCell
impl Unpin for LogCell
impl UnsafeUnpin for LogCell
impl UnwindSafe for LogCell
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