pub trait VfsIteratorExtwhere
Self: Iterator,{
// Provided methods
fn files_only(self) -> FilesOnly<Self> ⓘ
where Self: Sized { ... }
fn dirs_only(self) -> DirsOnly<Self> ⓘ
where Self: Sized { ... }
fn with_extension(self, extension: &'static str) -> WithExtension<Self> ⓘ
where Self: Sized { ... }
}