Enum routing::Request [] [src]

pub enum Request {
    Refresh(Vec<u8>, MessageId),
    Get(DataIdentifierMessageId),
    Put(DataMessageId),
    Post(DataMessageId),
    Delete(DataMessageId),
    GetAccountInfo(MessageId),
}

Request message types

Variants

Refresh(Vec<u8>, MessageId)

Message from upper layers sending network state on any network churn event.

Get(DataIdentifierMessageId)

Ask for data from network, passed from API with data name as parameter

Put(DataMessageId)

Put data to network. Provide actual data as parameter

Post(DataMessageId)

Post data to network. Provide actual data as parameter

Delete(DataMessageId)

Delete data from network. Provide actual data as parameter

GetAccountInfo(MessageId)

Get account information for Client with given ID

Methods

impl Request
[src]

fn priority(&self) -> u8

The priority Crust should send this message with.

fn is_cacheable(&self) -> bool

Is the response corresponding to this request cacheable?

Trait Implementations

impl Decodable for Request
[src]

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

impl Encodable for Request
[src]

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

impl Hash for Request
[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.

impl Clone for Request
[src]

fn clone(&self) -> Request

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 PartialEq for Request
[src]

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

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

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

This method tests for !=.

impl Eq for Request
[src]

impl PartialOrd for Request
[src]

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

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

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

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

fn le(&self, __arg_0: &Request) -> 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: &Request) -> bool

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

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

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

impl Ord for Request
[src]

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

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

impl Debug for Request
[src]

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

Formats the value using the given formatter.