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 { ... }
}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,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".