[][src]Struct libc::mallinfo

#[repr(C)]pub struct mallinfo {
    pub arena: c_int,
    pub ordblks: c_int,
    pub smblks: c_int,
    pub hblks: c_int,
    pub hblkhd: c_int,
    pub usmblks: c_int,
    pub fsmblks: c_int,
    pub uordblks: c_int,
    pub fordblks: c_int,
    pub keepcost: c_int,
}

Fields

arena: c_intordblks: c_intsmblks: c_inthblks: c_inthblkhd: c_intusmblks: c_intfsmblks: c_intuordblks: c_intfordblks: c_intkeepcost: c_int

Trait Implementations

impl Clone for mallinfo[src]

impl Copy for mallinfo[src]

Auto Trait Implementations

impl Send for mallinfo

impl Sync for mallinfo

impl Unpin for mallinfo

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.