pub trait Trackable {
type PathBuilder<P: Path<Out = Self>>: Deref<Target = P> + IntoPath<IntoPath = P>;
}Expand description
Allow building Paths into parts of this data type.
Use #[derive(Trackable)] on structs or enums to implement this.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".