pub enum PredicateContextError {
Deserialize(Box<dyn Error>),
JSONPath(JSONPathError),
}
Variants§
Deserialize(Box<dyn Error>)
JSONPath(JSONPathError)
Trait Implementations§
Source§impl Debug for PredicateContextError
impl Debug for PredicateContextError
Source§impl Display for PredicateContextError
impl Display for PredicateContextError
Source§impl Error for PredicateContextError
impl Error for PredicateContextError
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<JSONPathError> for PredicateContextError
impl From<JSONPathError> for PredicateContextError
Source§fn from(source: JSONPathError) -> Self
fn from(source: JSONPathError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PredicateContextError
impl !RefUnwindSafe for PredicateContextError
impl !Send for PredicateContextError
impl !Sync for PredicateContextError
impl Unpin for PredicateContextError
impl !UnwindSafe for PredicateContextError
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