pub struct InvalidTopic(/* private fields */);Expand description
An error returned when a topic string fails validation against the MQTT specification.
Trait Implementations§
Source§impl Clone for InvalidTopic
impl Clone for InvalidTopic
Source§fn clone(&self) -> InvalidTopic
fn clone(&self) -> InvalidTopic
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvalidTopic
impl Debug for InvalidTopic
Source§impl Display for InvalidTopic
impl Display for InvalidTopic
Source§impl Error for InvalidTopic
impl Error for InvalidTopic
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for InvalidTopic
impl PartialEq for InvalidTopic
impl Eq for InvalidTopic
impl StructuralPartialEq for InvalidTopic
Auto Trait Implementations§
impl Freeze for InvalidTopic
impl RefUnwindSafe for InvalidTopic
impl Send for InvalidTopic
impl Sync for InvalidTopic
impl Unpin for InvalidTopic
impl UnsafeUnpin for InvalidTopic
impl UnwindSafe for InvalidTopic
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more