#[non_exhaustive]pub enum MappingPathError {
Prefix(String),
Empty,
EmptyLevel(String),
}
Expand description
Error that can happen while parsing the MQTT levels structure of the topic received.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Prefix(String)
Missing forward slash at the beginning of the path.
Empty
The path must contain at least one level.
EmptyLevel(String)
A path level must contain at least one character, it cannot be //
.
Trait Implementations§
Source§impl Clone for MappingPathError
impl Clone for MappingPathError
Source§fn clone(&self) -> MappingPathError
fn clone(&self) -> MappingPathError
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 MappingPathError
impl Debug for MappingPathError
Source§impl Display for MappingPathError
impl Display for MappingPathError
Source§impl Error for MappingPathError
impl Error for MappingPathError
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 MappingPathError
impl PartialEq for MappingPathError
impl Eq for MappingPathError
impl StructuralPartialEq for MappingPathError
Auto Trait Implementations§
impl Freeze for MappingPathError
impl RefUnwindSafe for MappingPathError
impl Send for MappingPathError
impl Sync for MappingPathError
impl Unpin for MappingPathError
impl UnwindSafe for MappingPathError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.