[][src]Enum pspsdk_sys::sdk::IOFileModes

#[repr(u32)]pub enum IOFileModes {
    FIO_SO_IFMT,
    FIO_SO_IFLNK,
    FIO_SO_IFDIR,
    FIO_SO_IFREG,
    FIO_SO_IROTH,
    FIO_SO_IWOTH,
    FIO_SO_IXOTH,
}

File modes, used for the st_attr parameter in SceIoStat (confirm?).

Variants

FIO_SO_IFMT
FIO_SO_IFLNK
FIO_SO_IFDIR
FIO_SO_IFREG
FIO_SO_IROTH
FIO_SO_IWOTH
FIO_SO_IXOTH

Trait Implementations

impl Clone for IOFileModes[src]

impl Copy for IOFileModes[src]

impl Debug for IOFileModes[src]

impl Eq for IOFileModes[src]

impl Hash for IOFileModes[src]

impl PartialEq<IOFileModes> for IOFileModes[src]

impl StructuralEq for IOFileModes[src]

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