pub struct AssuranceLevelParseError(pub String);Expand description
Error returned when parsing an AssuranceLevel from a string fails.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for AssuranceLevelParseError
impl Clone for AssuranceLevelParseError
Source§fn clone(&self) -> AssuranceLevelParseError
fn clone(&self) -> AssuranceLevelParseError
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 AssuranceLevelParseError
impl Debug for AssuranceLevelParseError
Source§impl Display for AssuranceLevelParseError
impl Display for AssuranceLevelParseError
Source§impl Error for AssuranceLevelParseError
impl Error for AssuranceLevelParseError
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 AssuranceLevelParseError
impl PartialEq for AssuranceLevelParseError
impl Eq for AssuranceLevelParseError
impl StructuralPartialEq for AssuranceLevelParseError
Auto Trait Implementations§
impl Freeze for AssuranceLevelParseError
impl RefUnwindSafe for AssuranceLevelParseError
impl Send for AssuranceLevelParseError
impl Sync for AssuranceLevelParseError
impl Unpin for AssuranceLevelParseError
impl UnsafeUnpin for AssuranceLevelParseError
impl UnwindSafe for AssuranceLevelParseError
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