[][src]Struct nc::types::shm_info_t

#[repr(C)]
pub struct shm_info_t {
    pub used_ids: i32,
    pub shm_tot: usize,
    pub shm_rss: usize,
    pub shm_swp: usize,
    // some fields omitted
}

Fields

used_ids: i32shm_tot: usize

total allocated shm

shm_rss: usize

total resident shm

shm_swp: usize

total swapped shm

Auto Trait Implementations

impl Unpin for shm_info_t

impl Send for shm_info_t

impl Sync for shm_info_t

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]