Type Alias Queried

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(JsonPathError)

Contains the error value