pub enum Error {
Compile,
System {
msg: Option<String>,
},
Unknown,
}
👎Deprecated since 0.3.1: This is the final release of
json-query
. Future releases will be published as jq-rs
.Variants§
Compile
👎Deprecated since 0.3.1: This is the final release of
json-query
. Future releases will be published as jq-rs
.The jq program failed to compile.
System
👎Deprecated since 0.3.1: This is the final release of
json-query
. Future releases will be published as jq-rs
.Indicates problems initializing the JQ state machine, or invalid values produced by it.
Fields
Unknown
👎Deprecated since 0.3.1: This is the final release of
json-query
. Future releases will be published as jq-rs
.Trait Implementations§
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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