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

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

Variants

Methods

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

Trait Implementations

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

Formats the value using the given formatter. Read more

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

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

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