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.

impl Display for UnsubscribePacketPayloadError
[src]

Formats the value using the given formatter.

impl Error for UnsubscribePacketPayloadError
[src]

A short description of the error. 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.