pub trait TargetPath<'a>: Clone {
type ValuePath: ValuePath<'a>;
// Required methods
fn prefix(&self) -> PathPrefix;
fn value_path(&self) -> Self::ValuePath;
}Required Associated Types§
Required Methods§
fn prefix(&self) -> PathPrefix
fn value_path(&self) -> Self::ValuePath
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.
Implementations on Foreign Types§
Source§impl<'a> TargetPath<'a> for &'a str
Available on crate features string_path only.
impl<'a> TargetPath<'a> for &'a str
Available on crate features
string_path only.