Struct ext4_inode

Source
#[repr(C, packed(1))]
pub struct ext4_inode {
Show 26 fields pub mode: u16, pub uid: u16, pub size_lo: u32, pub access_time: u32, pub change_inode_time: u32, pub modification_time: u32, pub deletion_time: u32, pub gid: u16, pub links_count: u16, pub blocks_count_lo: u32, pub flags: u32, pub unused_osd1: u32, pub blocks: [u32; 15], pub generation: u32, pub file_acl_lo: u32, pub size_hi: u32, pub obso_faddr: u32, pub osd2: ext4_inode__bindgen_ty_1, pub extra_isize: u16, pub checksum_hi: u16, pub ctime_extra: u32, pub mtime_extra: u32, pub atime_extra: u32, pub crtime: u32, pub crtime_extra: u32, pub version_hi: u32,
}

Fields§

§mode: u16§uid: u16§size_lo: u32§access_time: u32§change_inode_time: u32§modification_time: u32§deletion_time: u32§gid: u16§links_count: u16§blocks_count_lo: u32§flags: u32§unused_osd1: u32§blocks: [u32; 15]§generation: u32§file_acl_lo: u32§size_hi: u32§obso_faddr: u32§osd2: ext4_inode__bindgen_ty_1§extra_isize: u16§checksum_hi: u16§ctime_extra: u32§mtime_extra: u32§atime_extra: u32§crtime: u32§crtime_extra: u32§version_hi: u32

Trait Implementations§

Source§

impl Clone for ext4_inode

Source§

fn clone(&self) -> ext4_inode

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for ext4_inode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.