pub trait PathConversion {
// Required method
fn cross_platform_display(&self) -> String;
}Expand description
Convert filesystem paths to portable configuration strings.
Required Methods§
Sourcefn cross_platform_display(&self) -> String
fn cross_platform_display(&self) -> String
Render a path using native separators without a Windows extended-length prefix.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".