pub enum Qualifier {
Undefined,
UserObj,
GroupObj,
Other,
User(u32),
Group(u32),
Mask,
}
Expand description
The subject of a permission grant.
Variants§
Undefined
Unrecognized/corrupt entries
UserObj
Permissions for owner of the file
GroupObj
Permissions for owning group of the file
Other
Permissions for everyone else not covered by the ACL
User(u32)
Permissions for user with UID u32
value
Group(u32)
Permissions for group with GID u32
value
Mask
Auto-generated entry
Trait Implementations§
impl Copy for Qualifier
impl Eq for Qualifier
impl StructuralPartialEq for Qualifier
Auto Trait Implementations§
impl Freeze for Qualifier
impl RefUnwindSafe for Qualifier
impl Send for Qualifier
impl Sync for Qualifier
impl Unpin for Qualifier
impl UnwindSafe for Qualifier
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more