Struct ParseError
struct ParseError(_)
An error from the parse function.
Implementations
impl ParseError
const fn kind(self: &Self) -> ParseErrorKindThe category of parse error
impl Clone for ParseError
fn clone(self: &Self) -> ParseError
impl Copy for ParseError
impl Debug for ParseError
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Display for ParseError
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl Eq for ParseError
impl Error for ParseError
fn description(self: &Self) -> &str
impl Freeze for ParseError
impl Hash for ParseError
fn hash<__H: $crate::hash::Hasher>(self: &Self, state: &mut __H)
impl PartialEq for ParseError
fn eq(self: &Self, other: &ParseError) -> bool
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl StructuralPartialEq for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
impl<T> Any for ParseError
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ParseError
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ParseError
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for ParseError
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for ParseError
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for ParseError
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T> ToString for ParseError
fn to_string(self: &Self) -> String
impl<T, U> Into for ParseError
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ParseError
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ParseError
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>