Enum zser::value::Value [] [src]

pub enum Value {
    Data(Vec<u8>),
    UInt(u64),
    Message(Map),
}

Represents any value that can occur in a zser message

Variants

Represents 8-bit clean binary data.

Represents an unsigned 64-bit integer.

Represents a (potentially nested) zser message.

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter.

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 !=.