Trait TargetPath
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.