pub struct InternalRsonpathError { /* private fields */ }
Expand description
Internal irrecoverable error. These are caused solely by bugs – broken invariants or assertions in internal logic – but we return those instead of panicking.
Trait Implementations§
Source§impl Debug for InternalRsonpathError
impl Debug for InternalRsonpathError
Source§impl Display for InternalRsonpathError
impl Display for InternalRsonpathError
Source§impl Error for InternalRsonpathError
impl Error for InternalRsonpathError
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<InternalRsonpathError> for EngineError
impl From<InternalRsonpathError> for EngineError
Source§fn from(source: InternalRsonpathError) -> Self
fn from(source: InternalRsonpathError) -> Self
Converts to this type from the input type.
Source§impl From<InternalRsonpathError> for InputError
impl From<InternalRsonpathError> for InputError
Source§fn from(source: InternalRsonpathError) -> Self
fn from(source: InternalRsonpathError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InternalRsonpathError
impl !RefUnwindSafe for InternalRsonpathError
impl Send for InternalRsonpathError
impl Sync for InternalRsonpathError
impl Unpin for InternalRsonpathError
impl !UnwindSafe for InternalRsonpathError
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