Enum routing::Data [] [src]

pub enum Data {
    Structured(StructuredData),
    Immutable(ImmutableData),
    Plain(PlainData),
    PubAppendable(PubAppendableData),
    PrivAppendable(PrivAppendableData),
}

This is the data types routing handles in the public interface

Variants

StructuredData data type.

ImmutableData data type.

PlainData data type.

PubAppendableData data type.

PrivAppendableData data type.

Methods

impl Data
[src]

Return data name.

Return data identifier.

Trait Implementations

impl Hash for Data
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq for Data
[src]

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

This method tests for !=.

impl Eq for Data
[src]

impl PartialOrd for Data
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Data
[src]

This method returns an Ordering between self and other. Read more

impl Clone for Data
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for Data
[src]

impl Decodable for Data
[src]

impl Debug for Data
[src]

Formats the value using the given formatter.