Enum vertree::Value [] [src]

pub enum Value {
    Blob(Vec<u8>),
    Set(Set),
    Int(u64),
    Bool(bool),
    Empty,
    None,
}

Values included in successful replies to Operations

Variants

Trait Implementations

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

Formats the value using the given formatter.

impl Eq for Value
[src]

impl PartialEq for Value
[src]

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

This method tests for !=.