Enum jsonptr::IndexError
source · [−]pub enum IndexError {
Parse(ParseError),
OutOfBounds(OutOfBoundsError),
}Expand description
Indicates an error occurred while parsing a usize (ParseError) or the
parsed value was out of bounds for the targeted array.
Variants
Parse(ParseError)
Represents an that an error occurred when parsing an index.
OutOfBounds(OutOfBoundsError)
Indicates that the Pointer contains an index of an array that is out of bounds.
Trait Implementations
sourceimpl Clone for IndexError
impl Clone for IndexError
sourcefn clone(&self) -> IndexError
fn clone(&self) -> IndexError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
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>
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
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