Enum bonsaidb_core::keyvalue::Value
source · [−]Expand description
A value stored in a key.
Variants
Bytes(Bytes)
A value stored as a byte array.
Numeric(Numeric)
A numeric value.
Implementations
Validates this value to ensure it is safe to store.
Deserializes the bytes contained inside of this value. Returns an error if this value doesn’t contain bytes.
Returns this value as an i64, allowing for precision to be lost if the type was not an i64 originally. If saturating is true, the conversion will not allow overflows. Returns None if the value is bytes.
Returns this value as an u64, allowing for precision to be lost if the type was not an u64 originally. If saturating is true, the conversion will not allow overflows. Returns None if the value is bytes.
Returns this value as an f64, allowing for precision to be lost if the type was not an f64 originally. Returns None if the value is bytes.
Returns this numeric as an i64, allowing for precision to be lost if the type was not an i64 originally. Returns None if the value is bytes.
Returns this numeric as an u64, allowing for precision to be lost if the type was not an u64 originally. Returns None if the value is bytes.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Value
impl UnwindSafe for Value
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more