Enum mqtt::packet::unsubscribe::UnsubscribePacketPayloadError[][src]

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

Variants

Trait Implementations

impl Debug for UnsubscribePacketPayloadError
[src]

Formats the value using the given formatter. Read more

impl Display for UnsubscribePacketPayloadError
[src]

Formats the value using the given formatter. Read more

impl Error for UnsubscribePacketPayloadError
[src]

This method is soft-deprecated. Read more

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

impl From<StringEncodeError> for UnsubscribePacketPayloadError
[src]

Performs the conversion.

impl From<Error> for UnsubscribePacketPayloadError
[src]

Performs the conversion.

impl From<TopicFilterError> for UnsubscribePacketPayloadError
[src]

Performs the conversion.

Auto Trait Implementations