pub struct NonAlphaNumError(pub u8);Expand description
An error returned by Parser::new when a non-alphanumeric short pair is given.
Tuple Fields§
§0: u8Trait Implementations§
Source§impl Clone for NonAlphaNumError
impl Clone for NonAlphaNumError
Source§fn clone(&self) -> NonAlphaNumError
fn clone(&self) -> NonAlphaNumError
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 NonAlphaNumError
impl Debug for NonAlphaNumError
Source§impl Display for NonAlphaNumError
impl Display for NonAlphaNumError
Source§impl Error for NonAlphaNumError
impl Error for NonAlphaNumError
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()
Auto Trait Implementations§
impl Freeze for NonAlphaNumError
impl RefUnwindSafe for NonAlphaNumError
impl Send for NonAlphaNumError
impl Sync for NonAlphaNumError
impl Unpin for NonAlphaNumError
impl UnwindSafe for NonAlphaNumError
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