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