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 ==.