pub trait FsExt<R: Runtime> {
    // Required methods
    fn fs_scope(&self) -> &Scope;
    fn try_fs_scope(&self) -> Option<&Scope>;
}

Required Methods§

source

fn fs_scope(&self) -> &Scope

source

fn try_fs_scope(&self) -> Option<&Scope>

Implementors§

source§

impl<R: Runtime, T: Manager<R>> FsExt<R> for T