pub(crate) trait Utf8PathBufExt {
// Required method
fn with_extra_extension(&self, extension: &str) -> Utf8PathBuf;
}Required Methods§
Sourcefn with_extra_extension(&self, extension: &str) -> Utf8PathBuf
fn with_extra_extension(&self, extension: &str) -> Utf8PathBuf
Append an extension to the path, even if it already has one.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".