[][src]Enum rkv::value::Value

pub enum Value<'s> {
    Bool(bool),
    U64(u64),
    I64(i64),
    F64(OrderedFloat<f64>),
    Instant(i64),
    Uuid(&'s Bytes),
    Str(&'s str),
    Json(&'s str),
    Blob(&'s [u8]),
}

Variants

Bool(bool)U64(u64)I64(i64)F64(OrderedFloat<f64>)Instant(i64)Uuid(&'s Bytes)Str(&'s str)Json(&'s str)Blob(&'s [u8])

Methods

impl<'s> Value<'s>[src]

Trait Implementations

impl<'s> Eq for Value<'s>[src]

impl<'s> PartialEq<Value<'s>> for Value<'s>[src]

impl<'s> From<&'s Value<'s>> for OwnedValue[src]

impl<'s> From<&'s OwnedValue> for Value<'s>[src]

impl<'s> Debug for Value<'s>[src]

Auto Trait Implementations

impl<'s> Send for Value<'s>

impl<'s> Sync for Value<'s>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]