pub trait Representation:
Ord
+ ToString
+ Eq
+ Clone
+ Debug {
// Provided method
fn to_path(&self, basepath: &Path) -> PathBuf { ... }
}Expand description
Representation of a suffix
Ord + PartialOrd: sort by age of the suffix. Most recent first (smallest).
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.