MostRecently

Trait MostRecently 

Source
pub trait MostRecently: Iterator<Item = PathBuf> + Sized {
    // Provided method
    fn most_recently(self, method: Method) -> Option<Self::Item> { ... }
}

Provided Methods§

Source

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.

Implementors§

Source§

impl<T> MostRecently for T
where T: Iterator<Item = PathBuf>,