Trait JsonPathEval
pub trait JsonPathEval {
type Iter<'a>
where Self: 'a;
// Required method
fn json_path<'a>(&'a self, path: &'a JsonPath<'a>) -> Self::Iter<'a>;
}Expand description
Trait implemented by types capable of evaluating JSON Paths.
Required Associated Types§
type Iter<'a> where Self: 'a
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.