pub struct ParseNonZeroCharError { /* private fields */ }Expand description
Parse str errors, created by the NonZeroChar::from_str
Trait Implementations§
Source§impl Clone for ParseNonZeroCharError
impl Clone for ParseNonZeroCharError
Source§fn clone(&self) -> ParseNonZeroCharError
fn clone(&self) -> ParseNonZeroCharError
Returns a copy 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 ParseNonZeroCharError
impl Debug for ParseNonZeroCharError
Source§impl Display for ParseNonZeroCharError
impl Display for ParseNonZeroCharError
Source§impl Error for ParseNonZeroCharError
impl Error for ParseNonZeroCharError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl From<ParseCharError> for ParseNonZeroCharError
impl From<ParseCharError> for ParseNonZeroCharError
Source§fn from(v: ParseCharError) -> Self
fn from(v: ParseCharError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseNonZeroCharError
impl PartialEq for ParseNonZeroCharError
impl Eq for ParseNonZeroCharError
impl StructuralPartialEq for ParseNonZeroCharError
Auto Trait Implementations§
impl Freeze for ParseNonZeroCharError
impl RefUnwindSafe for ParseNonZeroCharError
impl Send for ParseNonZeroCharError
impl Sync for ParseNonZeroCharError
impl Unpin for ParseNonZeroCharError
impl UnwindSafe for ParseNonZeroCharError
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