[][src]Struct scoutfs_sys::scoutfs_inode

#[repr(C)]pub struct scoutfs_inode {
    pub size: __le64,
    pub meta_seq: __le64,
    pub data_seq: __le64,
    pub data_version: __le64,
    pub online_blocks: __le64,
    pub offline_blocks: __le64,
    pub next_readdir_pos: __le64,
    pub next_xattr_id: __le64,
    pub nlink: __le32,
    pub uid: __le32,
    pub gid: __le32,
    pub mode: __le32,
    pub rdev: __le32,
    pub flags: __le32,
    pub atime: scoutfs_timespec,
    pub ctime: scoutfs_timespec,
    pub mtime: scoutfs_timespec,
}

Fields

size: __le64meta_seq: __le64data_seq: __le64data_version: __le64online_blocks: __le64offline_blocks: __le64next_readdir_pos: __le64next_xattr_id: __le64nlink: __le32uid: __le32gid: __le32mode: __le32rdev: __le32flags: __le32atime: scoutfs_timespecctime: scoutfs_timespecmtime: scoutfs_timespec

Trait Implementations

impl Clone for scoutfs_inode[src]

impl Copy for scoutfs_inode[src]

impl Debug for scoutfs_inode[src]

impl Default for scoutfs_inode[src]

impl Eq for scoutfs_inode[src]

impl Hash for scoutfs_inode[src]

impl Ord for scoutfs_inode[src]

impl PartialEq<scoutfs_inode> for scoutfs_inode[src]

impl PartialOrd<scoutfs_inode> for scoutfs_inode[src]

impl StructuralEq for scoutfs_inode[src]

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