[][src]Enum posix_acl::Qualifier

pub enum Qualifier {
    Undefined,
    UserObj,
    GroupObj,
    Other,
    User(u32),
    Group(u32),
    Mask,
}

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 Debug for Qualifier[src]

impl PartialEq<Qualifier> for Qualifier[src]

impl StructuralPartialEq for Qualifier[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.