Trait slos_filesystem::FsReadDir[][src]

pub trait FsReadDir {
    fn readdir(&mut self) -> Result<Vec<&mut dyn FsNode>, FsError> { ... }
}
Expand description

Directory read functions

The default implementations of functions in this trait will always return FsError::InvalidArgument.

Provided methods

Return an FsNode reference for each node in this directory

Implementors