[][src]Struct pspsdk_sys::sdk::SceIoStat

#[repr(C)]pub struct SceIoStat {
    pub st_mode: SceMode,
    pub st_attr: c_uint,
    pub st_size: SceOff,
    pub st_ctime: ScePspDateTime,
    pub st_atime: ScePspDateTime,
    pub st_mtime: ScePspDateTime,
    pub st_private: [c_uint; 6],
}

Structure to hold the status information about a file

Fields

st_mode: SceModest_attr: c_uintst_size: SceOff

Size of the file in bytes.

st_ctime: ScePspDateTime

Creation time.

st_atime: ScePspDateTime

Access time.

st_mtime: ScePspDateTime

Modification time.

st_private: [c_uint; 6]

Device-specific data.

Trait Implementations

impl Clone for SceIoStat[src]

impl Copy for SceIoStat[src]

impl Debug for SceIoStat[src]

Auto Trait Implementations

impl Send for SceIoStat

impl Sync for SceIoStat

impl Unpin for SceIoStat

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.