[][src]Struct mtree::FileMode

pub struct FileMode {
    pub setuid: bool,
    pub setgid: bool,
    pub owner: Perms,
    pub group: Perms,
    pub other: Perms,
}

The file/dir permissions for owner/group/everyone else.

Fields

setuid: bool

Executable files with this bit set will run with effective uid set to the uid of the file owner.

setgid: bool

Executable files with this bit set will run with effective gid set to the gid of the file owner.

owner: Perms

The permissions for the owner of the file.

group: Perms

The permissions for everyone who is not the owner, but in the group.

other: Perms

The permissions for everyone who is not the owner and not in the group.

Trait Implementations

impl PartialOrd<FileMode> for FileMode[src]

impl Copy for FileMode[src]

impl PartialEq<FileMode> for FileMode[src]

impl Clone for FileMode[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for FileMode[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Eq for FileMode[src]

impl Display for FileMode[src]

impl Debug for FileMode[src]

impl Hash for FileMode[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Octal for FileMode[src]

Auto Trait Implementations

impl Send for FileMode

impl Sync for FileMode

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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