pub type Queried<T> = Result<T, JsonPathError>;Expand description
A type that can be queried with JSONPath, typically Result
Aliased Type§
pub enum Queried<T> {
Ok(T),
Err(JsonPathError),
}pub type Queried<T> = Result<T, JsonPathError>;A type that can be queried with JSONPath, typically Result
pub enum Queried<T> {
Ok(T),
Err(JsonPathError),
}