Struct jsonptr::index::ParseIndexError
source · pub struct ParseIndexError {
pub source: ParseIntError,
}Expand description
Indicates that the Token could not be parsed as valid RFC 6901 index.
Fields§
§source: ParseIntErrorThe source ParseIntError
Trait Implementations§
source§impl Debug for ParseIndexError
impl Debug for ParseIndexError
source§impl Display for ParseIndexError
impl Display for ParseIndexError
source§impl Error for ParseIndexError
impl Error for ParseIndexError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ParseIntError> for ParseIndexError
impl From<ParseIntError> for ParseIndexError
source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
source§impl PartialEq for ParseIndexError
impl PartialEq for ParseIndexError
source§fn eq(&self, other: &ParseIndexError) -> bool
fn eq(&self, other: &ParseIndexError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ParseIndexError
impl StructuralPartialEq for ParseIndexError
Auto Trait Implementations§
impl Freeze for ParseIndexError
impl RefUnwindSafe for ParseIndexError
impl Send for ParseIndexError
impl Sync for ParseIndexError
impl Unpin for ParseIndexError
impl UnwindSafe for ParseIndexError
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