pub trait IqPath {
// Required method
fn keys(&self) -> impl Iterator<Item = &str>;
// Provided method
fn iq_path(&self) -> Vec<String> { ... }
}Expand description
A path defining a deep destination into a value.
Searching with an empty path will always return None.
Required Methods§
Provided 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.