Enum mqtt::packet::unsubscribe::UnsubscribePacketPayloadError
[−]
[src]
pub enum UnsubscribePacketPayloadError {
IoError(Error),
FromUtf8Error(FromUtf8Error),
StringEncodeError(StringEncodeError),
TopicFilterError(TopicFilterError),
}Variants
IoError(Error)FromUtf8Error(FromUtf8Error)StringEncodeError(StringEncodeError)TopicFilterError(TopicFilterError)Trait Implementations
impl Debug for UnsubscribePacketPayloadError[src]
impl Display for UnsubscribePacketPayloadError[src]
impl Error for UnsubscribePacketPayloadError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<StringEncodeError> for UnsubscribePacketPayloadError[src]
fn from(err: StringEncodeError) -> UnsubscribePacketPayloadError
Performs the conversion.
impl From<Error> for UnsubscribePacketPayloadError[src]
fn from(err: Error) -> UnsubscribePacketPayloadError
Performs the conversion.
impl From<TopicFilterError> for UnsubscribePacketPayloadError[src]
fn from(err: TopicFilterError) -> UnsubscribePacketPayloadError
Performs the conversion.