[][src]Struct libc::seminfo

#[repr(C)]pub struct seminfo {
    pub semmap: c_int,
    pub semmni: c_int,
    pub semmns: c_int,
    pub semmnu: c_int,
    pub semmsl: c_int,
    pub semopm: c_int,
    pub semume: c_int,
    pub semusz: c_int,
    pub semvmx: c_int,
    pub semaem: c_int,
}

Fields

semmap: c_intsemmni: c_intsemmns: c_intsemmnu: c_intsemmsl: c_intsemopm: c_intsemume: c_intsemusz: c_intsemvmx: c_intsemaem: c_int

Trait Implementations

impl Clone for seminfo[src]

impl Copy for seminfo[src]

Auto Trait Implementations

impl Send for seminfo

impl Sync for seminfo

impl Unpin for seminfo

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.