Enum veriform::value::Value [] [src]

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

Represents any value that can occur in a veriform message

Variants

Represents 8-bit clean binary data.

Represents an unsigned 64-bit integer.

Represents a (potentially nested) veriform message.

Trait Implementations

impl Debug for Value
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Value
[src]

[src]

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

[src]

This method tests for !=.