Struct paho_mqtt::errors::MqttError
[−]
[src]
pub struct MqttError { /* fields omitted */ }
An MQTT Error
Trait Implementations
impl From<Error> for MqttError
[src]
impl From<Utf8Error> for MqttError
[src]
impl From<(ErrorKind, &'static str)> for MqttError
[src]
impl From<(ErrorKind, i32, &'static str)> for MqttError
[src]
impl From<(ErrorKind, &'static str, String)> for MqttError
[src]
fn from((kind, desc, detail): (ErrorKind, &'static str, String)) -> MqttError
Performs the conversion.
impl From<(ErrorKind, i32, &'static str, String)> for MqttError
[src]
fn from(
(kind, err, desc, detail): (ErrorKind, i32, &'static str, String)
) -> MqttError
(kind, err, desc, detail): (ErrorKind, i32, &'static str, String)
) -> MqttError
Performs the conversion.
impl Error for MqttError
[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 Display for MqttError
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more