Struct jsonptr::NotUtf8Error
source · pub struct NotUtf8Error {
pub source: FromUtf8Error,
pub path: Vec<u8>,
}Expand description
Pointer was not in UTF-8 format.
Fields§
§source: FromUtf8ErrorUnderlying std::str::Utf8Error.
path: Vec<u8>Byte slice that was not in UTF-8 format.
Trait Implementations§
source§impl Clone for NotUtf8Error
impl Clone for NotUtf8Error
source§fn clone(&self) -> NotUtf8Error
fn clone(&self) -> NotUtf8Error
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 NotUtf8Error
impl Debug for NotUtf8Error
source§impl Display for NotUtf8Error
impl Display for NotUtf8Error
source§impl From<NotUtf8Error> for MalformedPointerError
impl From<NotUtf8Error> for MalformedPointerError
source§fn from(err: NotUtf8Error) -> Self
fn from(err: NotUtf8Error) -> Self
Converts to this type from the input type.
source§impl PartialEq<NotUtf8Error> for NotUtf8Error
impl PartialEq<NotUtf8Error> for NotUtf8Error
source§fn eq(&self, other: &NotUtf8Error) -> bool
fn eq(&self, other: &NotUtf8Error) -> bool
This method tests for
self and other values to be equal, and is used
by ==.