Trait VfsIteratorExt

Source
pub trait VfsIteratorExt
where 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§

Source

fn files_only(self) -> FilesOnly<Self>
where Self: Sized,

Source

fn dirs_only(self) -> DirsOnly<Self>
where Self: Sized,

Source

fn with_extension(self, extension: &'static str) -> WithExtension<Self>
where Self: Sized,

Implementors§

Source§

impl<I> VfsIteratorExt for I
where I: Iterator<Item = VfsResult<VfsPath>>,