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