pub trait NodePermissions {
    // Required method
    fn check_read(&self, path: &Path) -> Result<(), AnyError>;
}

Required Methods§

source

fn check_read(&self, path: &Path) -> Result<(), AnyError>

Implementors§