Struct otter_api_tests::imports::libc::statvfs[]

#[repr(C)]
pub struct statvfs { pub f_bsize: u64, pub f_frsize: u64, pub f_blocks: u64, pub f_bfree: u64, pub f_bavail: u64, pub f_files: u64, pub f_ffree: u64, pub f_favail: u64, pub f_fsid: u64, pub f_flag: u64, pub f_namemax: u64, // some fields omitted }

Fields

f_bsize: u64f_frsize: u64f_blocks: u64f_bfree: u64f_bavail: u64f_files: u64f_ffree: u64f_favail: u64f_fsid: u64f_flag: u64f_namemax: u64

Trait Implementations

impl Clone for statvfs

impl Copy for statvfs

impl Debug for statvfs

impl Eq for statvfs

impl Hash for statvfs

impl PartialEq<statvfs> for statvfs

impl StructuralEq for statvfs

impl StructuralPartialEq for statvfs

Auto Trait Implementations

impl RefUnwindSafe for statvfs

impl Send for statvfs

impl Sync for statvfs

impl Unpin for statvfs

impl UnwindSafe for statvfs

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>,