Enum mqtt::topic_filter::TopicFilterError[][src]

pub enum TopicFilterError {
    StringEncodeError(StringEncodeError),
    InvalidTopicFilter(String),
}

Errors while parsing topic filters

Variants

Trait Implementations

impl From<TopicFilterError> for SubscribePacketPayloadError
[src]

Performs the conversion.

impl From<TopicFilterError> for UnsubscribePacketPayloadError
[src]

Performs the conversion.

impl Debug for TopicFilterError
[src]

Formats the value using the given formatter. Read more

impl Display for TopicFilterError
[src]

Formats the value using the given formatter. Read more

impl Error for TopicFilterError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations