AclChecker

Trait AclChecker 

Source
pub trait AclChecker:
    Send
    + Sync
    + 'static {
    // Required method
    fn is_allowed(
        &self,
        user: &str,
        path: &str,
        tpe: Option<TpeKind>,
        access: AccessType,
    ) -> bool;
}

Required Methods§

Source

fn is_allowed( &self, user: &str, path: &str, tpe: Option<TpeKind>, access: AccessType, ) -> bool

Implementors§