pub enum MqttError<E> {
Service(E),
Protocol(ProtocolError),
HandshakeTimeout,
Disconnected(Option<Error>),
ServerError(&'static str),
}
Expand description
Errors which can occur when attempting to handle mqtt connection.
Variants§
Service(E)
Publish handler service error
Protocol(ProtocolError)
Protocol error
HandshakeTimeout
Handshake timeout
Disconnected(Option<Error>)
Peer disconnect
ServerError(&'static str)
Server error
Trait Implementations§
source§impl<E> Error for MqttError<E>where
Self: Debug + Display,
impl<E> Error for MqttError<E>where
Self: Debug + Display,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<E> From<Either<DecodeError, Error>> for MqttError<E>
impl<E> From<Either<DecodeError, Error>> for MqttError<E>
source§fn from(err: Either<DecodeError, Error>) -> Self
fn from(err: Either<DecodeError, Error>) -> Self
Converts to this type from the input type.
source§impl<E> From<Either<EncodeError, Error>> for MqttError<E>
impl<E> From<Either<EncodeError, Error>> for MqttError<E>
source§fn from(err: Either<EncodeError, Error>) -> Self
fn from(err: Either<EncodeError, Error>) -> Self
Converts to this type from the input type.
source§impl<E> From<ProtocolError> for MqttError<E>
impl<E> From<ProtocolError> for MqttError<E>
source§fn from(source: ProtocolError) -> Self
fn from(source: ProtocolError) -> Self
Converts to this type from the input type.