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: Pointer
The 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 Error for NotFoundError
impl Error for NotFoundError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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 for NotFoundError
impl PartialEq for NotFoundError
impl Eq for NotFoundError
impl StructuralPartialEq for NotFoundError
Auto Trait Implementations§
impl Freeze for NotFoundError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.