Enum ErrorKind

Source
pub enum ErrorKind {
    InvalidMethod(AMQPClass),
    InvalidChannel(u16),
    ConnectionRefused,
    NotConnected,
    UnexpectedReply,
    PreconditionFailed,
    ChannelLimitReached,
    InvalidConnectionState(ConnectionState),
    ParsingError(String),
    SerialisationError(GenError),
    IOError(Error),
    IoLoopError,
    // some variants omitted
}
๐Ÿ‘ŽDeprecated: use lapin instead
Expand description

The different kinds of errors that can be reported.

Even though we expose the complete enumeration of possible error variants, it is not considered stable to exhaustively match on this enumeration: do it at your own risk.

Variantsยง

ยง

InvalidMethod(AMQPClass)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

InvalidChannel(u16)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

ConnectionRefused

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

NotConnected

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

UnexpectedReply

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

PreconditionFailed

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

ChannelLimitReached

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

InvalidConnectionState(ConnectionState)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

ParsingError(String)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

SerialisationError(GenError)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

IOError(Error)

๐Ÿ‘ŽDeprecated: use lapin instead
ยง

IoLoopError

๐Ÿ‘ŽDeprecated: use lapin instead

Trait Implementationsยง

Sourceยง

impl Debug for ErrorKind

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Sourceยง

impl Display for ErrorKind

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Sourceยง

impl Fail for ErrorKind

Sourceยง

fn name(&self) -> Option<&str>

Returns the โ€œnameโ€ of the error. Read more
Sourceยง

fn cause(&self) -> Option<&dyn Fail>

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
Sourceยง

fn backtrace(&self) -> Option<&Backtrace>

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more
Sourceยง

fn context<D>(self, context: D) -> Context<D>
where D: Display + Send + Sync + 'static, Self: Sized,

Provides context for this failure. Read more
Sourceยง

fn compat(self) -> Compat<Self>
where Self: Sized,

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more
Sourceยง

impl From<ErrorKind> for Error

Sourceยง

fn from(kind: ErrorKind) -> Error

Converts to this type from the input type.

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> AsFail for T
where T: Fail,

Sourceยง

fn as_fail(&self) -> &(dyn Fail + 'static)

Converts a reference to Self into a dynamic trait object of Fail.
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> ToString for T
where T: Display + ?Sized,

Sourceยง

fn to_string(&self) -> String

Converts the given value to a String. Read more
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Sourceยง

impl<T> ErasedDestructor for T
where T: 'static,