[][src]Trait hermit::fs::PosixFileSystem

pub trait PosixFileSystem {
    fn open(
        &self,
        _path: &str,
        _perms: FilePerms
    ) -> Result<Box<dyn PosixFile>, FileError>;
fn unlink(&self, _path: &str) -> Result<(), FileError>; }

Required methods

fn open(
    &self,
    _path: &str,
    _perms: FilePerms
) -> Result<Box<dyn PosixFile>, FileError>

Loading content...

Implementors

impl<T: FuseInterface + 'static> PosixFileSystem for Fuse<T>[src]

Loading content...