Type Alias Parsed

Source
pub type Parsed<T> = Result<T, JsonPathError>;

Aliased Type§

enum Parsed<T> {
    Ok(T),
    Err(JsonPathError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(JsonPathError)

Contains the error value