[][src]Struct rc_zip::UnixMode

pub struct UnixMode(pub u32);

Methods

impl UnixMode[src]

pub const IFMT: Self[src]

pub const IFSOCK: Self[src]

pub const IFLNK: Self[src]

pub const IFREG: Self[src]

pub const IFBLK: Self[src]

pub const IFDIR: Self[src]

pub const IFCHR: Self[src]

pub const IFIFO: Self[src]

pub const ISUID: Self[src]

pub const ISGID: Self[src]

pub const ISVTX: Self[src]

impl UnixMode[src]

pub fn has(&self, rhs: Self) -> bool[src]

Trait Implementations

impl BitAnd<UnixMode> for UnixMode[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<UnixMode> for UnixMode[src]

impl BitOr<UnixMode> for UnixMode[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<UnixMode> for UnixMode[src]

impl Clone for UnixMode[src]

impl Copy for UnixMode[src]

impl Debug for UnixMode[src]

impl Eq for UnixMode[src]

impl From<UnixMode> for Mode[src]

impl From<u32> for UnixMode[src]

impl Hash for UnixMode[src]

impl PartialEq<UnixMode> for UnixMode[src]

impl StructuralEq for UnixMode[src]

impl StructuralPartialEq for UnixMode[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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.