[][src]Enum amqp_codec::AmqpParseError

pub enum AmqpParseError {
    InvalidSize,
    Incomplete(Option<usize>),
    InvalidFormatCode(u8),
    InvalidChar(u32),
    InvalidDescriptor(Descriptor),
    UnexpectedFrameType(u8),
    RequiredFieldOmitted(&'static str),
    UnknownEnumOption(&'static str),
    UuidParseError(Error),
    Utf8Error(Utf8Error),
}

Variants

InvalidSize
Incomplete(Option<usize>)
InvalidFormatCode(u8)
InvalidChar(u32)
InvalidDescriptor(Descriptor)
UnexpectedFrameType(u8)
RequiredFieldOmitted(&'static str)
UnknownEnumOption(&'static str)
UuidParseError(Error)
Utf8Error(Utf8Error)

Trait Implementations

impl From<u32> for AmqpParseError[src]

impl From<Utf8Error> for AmqpParseError[src]

impl From<Descriptor> for AmqpParseError[src]

impl From<Error> for AmqpParseError[src]

impl From<()> for AmqpParseError[src]

impl From<Option<usize>> for AmqpParseError[src]

impl From<AmqpParseError> for AmqpCodecError[src]

impl Clone for AmqpParseError[src]

impl Debug for AmqpParseError[src]

impl Display for AmqpParseError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,