pub type MqttResult<T> = Result<T, MqttError>;
pub enum MqttResult<T> { Ok(T), Err(MqttError), }
Contains the success value
Contains the error value