Enum mqtt::topic_name::TopicNameError[][src]

pub enum TopicNameError {
    StringEncodeError(StringEncodeError),
    InvalidTopicName(String),
}

Errors while parsing topic names

Variants

Trait Implementations

impl From<TopicNameError> for VariableHeaderError
[src]

Performs the conversion.

impl From<TopicNameError> for ConnectPacketPayloadError
[src]

Performs the conversion.

impl<T: Packet> From<TopicNameError> for PacketError<T>
[src]

Performs the conversion.

impl Debug for TopicNameError
[src]

Formats the value using the given formatter. Read more

impl Display for TopicNameError
[src]

Formats the value using the given formatter. Read more

impl Error for TopicNameError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations