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