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§
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.