Struct libc::dqblk[][src]

#[repr(C)]pub struct dqblk {
    pub dqb_bhardlimit: u64,
    pub dqb_bsoftlimit: u64,
    pub dqb_curbytes: u64,
    pub dqb_ihardlimit: u32,
    pub dqb_isoftlimit: u32,
    pub dqb_curinodes: u32,
    pub dqb_btime: u32,
    pub dqb_itime: u32,
    pub dqb_id: u32,
    pub dqb_spare: [u32; 4],
}

Fields

dqb_bhardlimit: u64dqb_bsoftlimit: u64dqb_curbytes: u64dqb_ihardlimit: u32dqb_isoftlimit: u32dqb_curinodes: u32dqb_btime: u32dqb_itime: u32dqb_id: u32dqb_spare: [u32; 4]

Trait Implementations

impl Clone for dqblk[src]

impl Copy for dqblk[src]

Auto Trait Implementations

impl Send for dqblk

impl Sync for dqblk

impl Unpin for dqblk

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.