Enum mqtt::packet::connect::ConnectPacketPayloadError
[−]
[src]
pub enum ConnectPacketPayloadError {
IoError(Error),
StringEncodeError(StringEncodeError),
TopicNameError(TopicNameError),
}Variants
IoError(Error)StringEncodeError(StringEncodeError)TopicNameError(TopicNameError)
Trait Implementations
impl Debug for ConnectPacketPayloadError[src]
impl Display for ConnectPacketPayloadError[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Error for ConnectPacketPayloadError[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more
impl From<Error> for ConnectPacketPayloadError[src]
fn from(err: Error) -> ConnectPacketPayloadError[src]
Performs the conversion.
impl From<StringEncodeError> for ConnectPacketPayloadError[src]
fn from(err: StringEncodeError) -> ConnectPacketPayloadError[src]
Performs the conversion.
impl From<TopicNameError> for ConnectPacketPayloadError[src]
fn from(err: TopicNameError) -> ConnectPacketPayloadError[src]
Performs the conversion.