pub trait ToFileRef {
// Required method
fn to_file_ref(&self) -> FileRef;
}Expand description
Get FileRef from the type reference.
Required Methods§
fn to_file_ref(&self) -> FileRef
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".