pub trait Clean {
// Required method
fn clean(&self) -> PathBuf;
}Expand description
The Clean trait implements the clean method.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".