Enum routing::DataIdentifier [] [src]

pub enum DataIdentifier {
    Structured(XorNameu64),
    Immutable(XorName),
    Plain(XorName),
}

An identifier to address a data chunk.

Variants

Structured(XorNameu64)

Data request, (Identifier, TypeTag) pair for name resolution, for StructuredData.

Immutable(XorName)

Data request, (Identifier), for ImmutableData.

Plain(XorName)

Request for PlainData.

Methods

impl DataIdentifier
[src]

fn name(&self) -> &XorName

DataIdentifier name.

Trait Implementations

impl Decodable for DataIdentifier
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<DataIdentifier, __D::Error>

impl Encodable for DataIdentifier
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Copy for DataIdentifier
[src]

impl Clone for DataIdentifier
[src]

fn clone(&self) -> DataIdentifier

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Ord for DataIdentifier
[src]

fn cmp(&self, __arg_0: &DataIdentifier) -> Ordering

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

impl PartialOrd for DataIdentifier
[src]

fn partial_cmp(&self, __arg_0: &DataIdentifier) -> Option<Ordering>

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

fn lt(&self, __arg_0: &DataIdentifier) -> bool

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

fn le(&self, __arg_0: &DataIdentifier) -> bool

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

fn gt(&self, __arg_0: &DataIdentifier) -> bool

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

fn ge(&self, __arg_0: &DataIdentifier) -> bool

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

impl Eq for DataIdentifier
[src]

impl PartialEq for DataIdentifier
[src]

fn eq(&self, __arg_0: &DataIdentifier) -> bool

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

fn ne(&self, __arg_0: &DataIdentifier) -> bool

This method tests for !=.

impl Debug for DataIdentifier
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Hash for DataIdentifier
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

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

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.