pub enum JsonPathError {
EmptyPath,
EmptyValue,
CantFlatten(Vec<Value>),
Path(String),
Serde(String),
}
Variants§
Trait Implementations§
Source§impl Debug for JsonPathError
impl Debug for JsonPathError
Auto Trait Implementations§
impl Freeze for JsonPathError
impl RefUnwindSafe for JsonPathError
impl Send for JsonPathError
impl Sync for JsonPathError
impl Unpin for JsonPathError
impl UnwindSafe for JsonPathError
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