pub trait Path<T> {
type Lift;
// Required method
fn path_force(&self, arg: T) -> <Self as Path<T>>::Lift;
// Provided method
fn path(&self, arg: T) -> <Self as Path<T>>::Lift
where <Self as Path<T>>::Lift: ExPath<Lift = <<T as Constrain<<Self as ExPath>::Lift>>::Lift as ExPath>::Lift>,
T: Constrain<<Self as ExPath>::Lift>,
<T as Constrain<<Self as ExPath>::Lift>>::Lift: ExPath,
Self: ExPath { ... }
}Required Associated Types§
Required Methods§
fn path_force(&self, arg: T) -> <Self as Path<T>>::Lift
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.