Trait slos_filesystem::FsWriteDir [−][src]
pub trait FsWriteDir {
    fn touch(&mut self, _name: &str) -> Result<&mut dyn FsNode, FsError> { ... }
    fn mkdir(&mut self, _name: &str) -> Result<&mut dyn FsNode, FsError> { ... }
}Expand description
Directory write functions
The default implementations of functions in this trait will always return
FsError::InvalidArgument.
Provided methods
Create a new empty file in this directory