Enum routing::client_errors::GetError [] [src]

pub enum GetError {
    NoSuchAccount,
    NoSuchData,
    NetworkOther(String),
}

Errors in Get (non-mutating) operations involving Core and Vaults

Variants

SAFE Account does not exist for client

Requested data not found

Network error occurring at Vault level which has no bearing on clients, e.g. serialisation failure or database failure

Trait Implementations

impl Debug for GetError
[src]

Formats the value using the given formatter.

impl Clone for GetError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for GetError
[src]

impl PartialEq for GetError
[src]

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

This method tests for !=.

impl Ord for GetError
[src]

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

impl PartialOrd for GetError
[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 Hash for GetError
[src]

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

Feeds a slice of this type into the state provided.

impl Encodable for GetError
[src]

Serialize a value using an Encoder.

impl Decodable for GetError
[src]

Deserialize a value using a Decoder.

impl<T: Into<String>> From<T> for GetError
[src]

Performs the conversion.

impl Display for GetError
[src]

Formats the value using the given formatter.

impl Error for GetError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more