[][src]Enum pspsdk_sys::sdk::IOAccessModes

#[repr(u32)]pub enum IOAccessModes {
    FIO_S_IFMT,
    FIO_S_IFLNK,
    FIO_S_IFDIR,
    FIO_S_IFREG,
    FIO_S_ISUID,
    FIO_S_ISGID,
    FIO_S_ISVTX,
    FIO_S_IRWXU,
    FIO_S_IRUSR,
    FIO_S_IWUSR,
    FIO_S_IXUSR,
    FIO_S_IRWXG,
    FIO_S_IRGRP,
    FIO_S_IWGRP,
    FIO_S_IXGRP,
    FIO_S_IRWXO,
    FIO_S_IROTH,
    FIO_S_IWOTH,
    FIO_S_IXOTH,
}

Access modes for st_mode in SceIoStat (confirm?).

Variants

FIO_S_IFMT
FIO_S_IFLNK
FIO_S_IFDIR
FIO_S_IFREG
FIO_S_ISUID
FIO_S_ISGID
FIO_S_ISVTX
FIO_S_IRWXU
FIO_S_IRUSR
FIO_S_IWUSR
FIO_S_IXUSR
FIO_S_IRWXG
FIO_S_IRGRP
FIO_S_IWGRP
FIO_S_IXGRP
FIO_S_IRWXO
FIO_S_IROTH
FIO_S_IWOTH
FIO_S_IXOTH

Trait Implementations

impl Clone for IOAccessModes[src]

impl Copy for IOAccessModes[src]

impl Debug for IOAccessModes[src]

impl Eq for IOAccessModes[src]

impl Hash for IOAccessModes[src]

impl PartialEq<IOAccessModes> for IOAccessModes[src]

impl StructuralEq for IOAccessModes[src]

impl StructuralPartialEq for IOAccessModes[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 = 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.