Enum rabble::errors::ErrorKind []

pub enum ErrorKind {
    Msg(String),
    Io(Error),
    MsgpackEncode(Error),
    MsgpackDecode(Error),
    Protobuf(ProtobufError),
    EncodeError(Option<usize>, Option<NodeId>),
    DecodeError(usizeOption<NodeId>),
    RegistrarError(Option<usize>, Option<NodeId>),
    WriteError(usizeOption<NodeId>),
    ReadError(usizeOption<NodeId>),
    BroadcastError(Vec<Error>),
    PollNotificationErrors(Vec<Error>),
    ConnectError(NodeId),
    SendError(StringOption<Pid>),
    Shutdown(Pid),
}

Variants

Methods

impl ErrorKind

impl ErrorKind
[src]

Return the socket ids of the error if there are any

Trait Implementations

impl Debug for ErrorKind

Formats the value using the given formatter.

impl Display for ErrorKind

Formats the value using the given formatter. Read more

impl<'a> From<&'a str> for ErrorKind

Performs the conversion.

impl From<String> for ErrorKind

Performs the conversion.