pub trait MostRecently: Iterator<Item = PathBuf> + Sized {
// Provided method
fn most_recently(self, method: Method) -> Option<Self::Item> { ... }
}Provided Methods§
fn most_recently(self, method: Method) -> Option<Self::Item>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.