Enum subotai::SubotaiError [] [src]

pub enum SubotaiError {
    NoResponse,
    OffGridError,
    NodeNotFound,
    OutOfBounds,
    StorageError,
    UnresponsiveNetwork,
    Io(Error),
    Deserialize(DeserializeError),
}

Subotai error type. It reports the various ways in which a hash table query may fail.

Variants

No response from a particular remote node.

This node isn't connected to enough live nodes to be considered part of a live network, which caused this operation to fail (i.e. the node is off grid).

The node specified wasn't found.

The value specified falls out of bounds of the routing table space.

Error during a store operation.

The network is unresponsive (several RPCs have timed out).

Trait Implementations

impl Debug for SubotaiError
[src]

Formats the value using the given formatter.

impl Display for SubotaiError
[src]

Formats the value using the given formatter.

impl Error for SubotaiError
[src]

A short description of the error. Read more

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

impl From<Error> for SubotaiError
[src]

Performs the conversion.

impl From<DeserializeError> for SubotaiError
[src]

Performs the conversion.