Enum mqtt::topic_filter::TopicFilterDecodeError
source · [−]pub enum TopicFilterDecodeError {
IoError(Error),
InvalidTopicFilter(TopicFilterError),
}
Expand description
Errors while parsing topic filters
Variants
IoError(Error)
InvalidTopicFilter(TopicFilterError)
Trait Implementations
sourceimpl Debug for TopicFilterDecodeError
impl Debug for TopicFilterDecodeError
sourceimpl Display for TopicFilterDecodeError
impl Display for TopicFilterDecodeError
sourceimpl Error for TopicFilterDecodeError
impl Error for TopicFilterDecodeError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<Error> for TopicFilterDecodeError
impl From<Error> for TopicFilterDecodeError
sourceimpl From<TopicFilterDecodeError> for SubscribePacketError
impl From<TopicFilterDecodeError> for SubscribePacketError
sourcefn from(e: TopicFilterDecodeError) -> Self
fn from(e: TopicFilterDecodeError) -> Self
Performs the conversion.
sourceimpl From<TopicFilterDecodeError> for UnsubscribePacketError
impl From<TopicFilterDecodeError> for UnsubscribePacketError
sourcefn from(e: TopicFilterDecodeError) -> Self
fn from(e: TopicFilterDecodeError) -> Self
Performs the conversion.
sourceimpl From<TopicFilterError> for TopicFilterDecodeError
impl From<TopicFilterError> for TopicFilterDecodeError
sourcefn from(source: TopicFilterError) -> Self
fn from(source: TopicFilterError) -> Self
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for TopicFilterDecodeError
impl Send for TopicFilterDecodeError
impl Sync for TopicFilterDecodeError
impl Unpin for TopicFilterDecodeError
impl UnwindSafe for TopicFilterDecodeError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more