Enum jsonptr::IndexError
source · [−]pub enum IndexError {
Parse(ParseError<ParseIntError>),
OutOfBounds(OutOfBoundsError),
}Variants
Parse(ParseError<ParseIntError>)
OutOfBounds(OutOfBoundsError)
Trait Implementations
sourceimpl Debug for IndexError
impl Debug for IndexError
sourceimpl Display for IndexError
impl Display for IndexError
sourceimpl Error for IndexError
impl Error for IndexError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<IndexError> for Error
impl From<IndexError> for Error
sourcefn from(err: IndexError) -> Self
fn from(err: IndexError) -> Self
Converts to this type from the input type.
sourceimpl From<OutOfBoundsError> for IndexError
impl From<OutOfBoundsError> for IndexError
sourcefn from(err: OutOfBoundsError) -> Self
fn from(err: OutOfBoundsError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<IndexError> for IndexError
impl PartialEq<IndexError> for IndexError
sourcefn eq(&self, other: &IndexError) -> bool
fn eq(&self, other: &IndexError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &IndexError) -> bool
fn ne(&self, other: &IndexError) -> bool
This method tests for !=.
impl Eq for IndexError
impl StructuralEq for IndexError
impl StructuralPartialEq for IndexError
Auto Trait Implementations
impl RefUnwindSafe for IndexError
impl Send for IndexError
impl Sync for IndexError
impl Unpin for IndexError
impl UnwindSafe for IndexError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more