pub trait Perm: FromPrimitive + ToPrimitive + Copy + Eq + Hash + Debug + Sync + Send + 'static {
    type Auth;

    const NOT_FOUND: MgmtError;
    const TEST_EXISTENCE: Self;
}

Required Associated Types

Required Associated Constants

Implementors