pub enum Value {
Null,
Int64(i64),
Uint64(u64),
Double(f64),
Boolean(bool),
String(Bytes),
Any(Bytes),
Composite(Bytes),
}Expand description
One value of a row.
Variants§
Null
Int64(i64)
Uint64(u64)
Double(f64)
Boolean(bool)
String(Bytes)
Any(Bytes)
A YSON-encoded value of any shape.
Composite(Bytes)
A YSON-encoded value of a composite column type.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl !Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnsafeUnpin for Value
impl UnwindSafe for Value
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