pub trait HasRootPermissions {
// Provided methods
fn can_read(&self, _path: &str) -> bool { ... }
fn can_write(&self, _path: &str) -> bool { ... }
fn max_depth(&self) -> Option<usize> { ... }
}
Expand description
Trait for root permissions and security