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§
Trait Implementations§
source§impl Clone for NotFoundError
impl Clone for NotFoundError
source§fn clone(&self) -> NotFoundError
fn clone(&self) -> NotFoundError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for NotFoundError
impl Debug for NotFoundError
source§impl Display for NotFoundError
impl Display for NotFoundError
source§impl From<NotFoundError> for Error
impl From<NotFoundError> for Error
source§fn from(err: NotFoundError) -> Self
fn from(err: NotFoundError) -> Self
Converts to this type from the input type.
source§impl PartialEq<NotFoundError> for NotFoundError
impl PartialEq<NotFoundError> for NotFoundError
source§fn 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 ==.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§
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