Enum amqp::AMQPError [] [src]

pub enum AMQPError {
    IoError(ErrorKind),
    DecodeError(&'static str),
    Protocol(String),
    SchemeError(String),
    UrlParseError(ParseError),
    QueueEmpty,
    SyncError,
    FramingError(String),
    VHostError,
}

Variants

Trait Implementations

impl Debug for AMQPError
[src]

Formats the value using the given formatter.

impl Clone for AMQPError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for AMQPError
[src]

Formats the value using the given formatter.

impl Error for AMQPError
[src]

A short description of the error. Read more

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

impl From<Error> for AMQPError
[src]

Performs the conversion.

impl<T> From<PoisonError<T>> for AMQPError
[src]

Performs the conversion.

impl From<ParseError> for AMQPError
[src]

Performs the conversion.

impl From<SslError> for AMQPError
[src]

Performs the conversion.