pub trait FilePath {
// Required method
fn file_path(&self) -> &PathBuf;
}Expand description
Trait for types that can synchronously determine the file path.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".