pub type Parsed<T> = Result<T, JsonPathError>;
enum Parsed<T> { Ok(T), Err(JsonPathError), }
Contains the success value
Contains the error value