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

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

Required methods

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

Loading content...

Implementors

impl PosixFileSystem for Fuse[src]

fn open(
    &self,
    path: &str,
    perms: FilePerms
) -> Result<Box<dyn PosixFile + Send>, FileError>
[src]

Loading content...