pub enum BinarySnapshotCell {
Null,
String(String),
Integer(i64),
Float(f64),
Boolean(bool),
Json(Value),
Bytes(Vec<u8>),
}Variants§
Implementations§
Source§impl BinarySnapshotCell
impl BinarySnapshotCell
pub fn into_json_value(self) -> Value
Trait Implementations§
Source§impl Clone for BinarySnapshotCell
impl Clone for BinarySnapshotCell
Source§fn clone(&self) -> BinarySnapshotCell
fn clone(&self) -> BinarySnapshotCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinarySnapshotCell
impl Debug for BinarySnapshotCell
Source§impl PartialEq for BinarySnapshotCell
impl PartialEq for BinarySnapshotCell
Source§fn eq(&self, other: &BinarySnapshotCell) -> bool
fn eq(&self, other: &BinarySnapshotCell) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BinarySnapshotCell
Auto Trait Implementations§
impl Freeze for BinarySnapshotCell
impl RefUnwindSafe for BinarySnapshotCell
impl Send for BinarySnapshotCell
impl Sync for BinarySnapshotCell
impl Unpin for BinarySnapshotCell
impl UnsafeUnpin for BinarySnapshotCell
impl UnwindSafe for BinarySnapshotCell
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