#[repr(u32)]pub enum IOFileModes {
FIO_SO_IFMT = 56,
FIO_SO_IFLNK = 8,
FIO_SO_IFDIR = 16,
FIO_SO_IFREG = 32,
FIO_SO_IROTH = 4,
FIO_SO_IWOTH = 2,
FIO_SO_IXOTH = 1,
}Expand description
File modes, used for the st_attr parameter in SceIoStat (confirm?).
Variants§
FIO_SO_IFMT = 56
FIO_SO_IFLNK = 8
FIO_SO_IFDIR = 16
FIO_SO_IFREG = 32
FIO_SO_IROTH = 4
FIO_SO_IWOTH = 2
FIO_SO_IXOTH = 1
Trait Implementations§
Source§impl Clone for IOFileModes
impl Clone for IOFileModes
Source§fn clone(&self) -> IOFileModes
fn clone(&self) -> IOFileModes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IOFileModes
impl Debug for IOFileModes
Source§impl Hash for IOFileModes
impl Hash for IOFileModes
Source§impl PartialEq for IOFileModes
impl PartialEq for IOFileModes
impl Copy for IOFileModes
impl Eq for IOFileModes
impl StructuralPartialEq for IOFileModes
Auto Trait Implementations§
impl Freeze for IOFileModes
impl RefUnwindSafe for IOFileModes
impl Send for IOFileModes
impl Sync for IOFileModes
impl Unpin for IOFileModes
impl UnsafeUnpin for IOFileModes
impl UnwindSafe for IOFileModes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more