pub enum ConsignmentParseError {
Armor(StrictArmorError),
Type,
}
Variants§
Armor(StrictArmorError)
Type
Trait Implementations§
Source§impl Debug for ConsignmentParseError
impl Debug for ConsignmentParseError
Source§impl Display for ConsignmentParseError
impl Display for ConsignmentParseError
Source§impl Error for ConsignmentParseError
impl Error for ConsignmentParseError
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 From<ConsignmentParseError> for String
impl From<ConsignmentParseError> for String
Source§fn from(err: ConsignmentParseError) -> Self
fn from(err: ConsignmentParseError) -> Self
Converts to this type from the input type.
Source§impl From<StrictArmorError> for ConsignmentParseError
impl From<StrictArmorError> for ConsignmentParseError
Source§fn from(v: StrictArmorError) -> Self
fn from(v: StrictArmorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConsignmentParseError
impl !RefUnwindSafe for ConsignmentParseError
impl Send for ConsignmentParseError
impl Sync for ConsignmentParseError
impl Unpin for ConsignmentParseError
impl !UnwindSafe for ConsignmentParseError
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