Struct jsonptr::NotFoundError
source · [−]pub struct NotFoundError {
pub pointer: Pointer,
}Expand description
NotFoundError indicates that a Pointer was not found in the data.
Fields
pointer: PointerThe Pointer which could not be resolved.
Implementations
sourceimpl NotFoundError
impl NotFoundError
Trait Implementations
sourceimpl Clone for NotFoundError
impl Clone for NotFoundError
sourcefn clone(&self) -> NotFoundError
fn clone(&self) -> NotFoundError
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 NotFoundError
impl Debug for NotFoundError
sourceimpl Display for NotFoundError
impl Display for NotFoundError
sourceimpl From<NotFoundError> for Error
impl From<NotFoundError> for Error
sourcefn from(err: NotFoundError) -> Self
fn from(err: NotFoundError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<NotFoundError> for NotFoundError
impl PartialEq<NotFoundError> for NotFoundError
sourcefn eq(&self, other: &NotFoundError) -> bool
fn eq(&self, other: &NotFoundError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &NotFoundError) -> bool
fn ne(&self, other: &NotFoundError) -> bool
This method tests for !=.
impl Eq for NotFoundError
impl StructuralEq for NotFoundError
impl StructuralPartialEq for NotFoundError
Auto Trait Implementations
impl RefUnwindSafe for NotFoundError
impl Send for NotFoundError
impl Sync for NotFoundError
impl Unpin for NotFoundError
impl UnwindSafe for NotFoundError
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