pub trait SourcePath {
// Required method
fn source_path(&self) -> BorrowedSeparatedPath<'_>;
// Provided method
fn is_from_dictionary(&self) -> bool { ... }
}Required Methods§
fn source_path(&self) -> BorrowedSeparatedPath<'_>
Provided Methods§
fn is_from_dictionary(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".