Enum mqtt::packet::subscribe::SubscribePacketPayloadError[][src]

pub enum SubscribePacketPayloadError {
    IoError(Error),
    FromUtf8Error(FromUtf8Error),
    StringEncodeError(StringEncodeError),
    InvalidQualityOfService,
    TopicFilterError(TopicFilterError),
}

Variants

Trait Implementations

impl Debug for SubscribePacketPayloadError
[src]

Formats the value using the given formatter. Read more

impl Display for SubscribePacketPayloadError
[src]

Formats the value using the given formatter. Read more

impl Error for SubscribePacketPayloadError
[src]

This method is soft-deprecated. Read more

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

impl From<TopicFilterError> for SubscribePacketPayloadError
[src]

Performs the conversion.

impl From<StringEncodeError> for SubscribePacketPayloadError
[src]

Performs the conversion.

impl From<Error> for SubscribePacketPayloadError
[src]

Performs the conversion.

Auto Trait Implementations