pub enum FieldMapError {
FieldNotFound(Tag),
ConversionError(ConversionError),
}Variants§
FieldNotFound(Tag)
ConversionError(ConversionError)
Trait Implementations§
Source§impl Clone for FieldMapError
impl Clone for FieldMapError
Source§fn clone(&self) -> FieldMapError
fn clone(&self) -> FieldMapError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FieldMapError
impl Debug for FieldMapError
Source§impl From<ConversionError> for FieldMapError
impl From<ConversionError> for FieldMapError
Source§fn from(err: ConversionError) -> Self
fn from(err: ConversionError) -> Self
Converts to this type from the input type.
Source§impl From<FieldMapError> for MessageValidationError
impl From<FieldMapError> for MessageValidationError
Source§fn from(e: FieldMapError) -> Self
fn from(e: FieldMapError) -> Self
Converts to this type from the input type.
Source§impl From<FieldMapError> for MessageParseError
impl From<FieldMapError> for MessageParseError
Source§fn from(e: FieldMapError) -> MessageParseError
fn from(e: FieldMapError) -> MessageParseError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FieldMapError
impl RefUnwindSafe for FieldMapError
impl Send for FieldMapError
impl Sync for FieldMapError
impl Unpin for FieldMapError
impl UnsafeUnpin for FieldMapError
impl UnwindSafe for FieldMapError
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