Struct otter_api_tests::imports::libc::statfs64[]

#[repr(C)]
pub struct statfs64 { pub f_type: i64, pub f_bsize: i64, pub f_blocks: u64, pub f_bfree: u64, pub f_bavail: u64, pub f_files: u64, pub f_ffree: u64, pub f_fsid: fsid_t, pub f_namelen: i64, pub f_frsize: i64, pub f_flags: i64, pub f_spare: [i64; 4], }

Fields

f_type: i64f_bsize: i64f_blocks: u64f_bfree: u64f_bavail: u64f_files: u64f_ffree: u64f_fsid: fsid_tf_namelen: i64f_frsize: i64f_flags: i64f_spare: [i64; 4]

Trait Implementations

impl Clone for statfs64

impl Copy for statfs64

impl Debug for statfs64

impl Eq for statfs64

impl Hash for statfs64

impl PartialEq<statfs64> for statfs64

impl StructuralEq for statfs64

impl StructuralPartialEq for statfs64

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,