Struct libc::msginfo

#[repr(C)]
pub struct msginfo {    
    pub msgpool: ::c_int,
    pub msgmap: ::c_int,
    pub msgmax: ::c_int,
    pub msgmnb: ::c_int,
    pub msgmni: ::c_int,
    pub msgssz: ::c_int,
    pub msgtql: ::c_int,
    pub msgseg: ::c_ushort,
}

Fields

pub msgpool: ::c_int
pub msgmap: ::c_int
pub msgmax: ::c_int
pub msgmnb: ::c_int
pub msgmni: ::c_int
pub msgssz: ::c_int
pub msgtql: ::c_int
pub msgseg: ::c_ushort

Trait Implementations

impl Clone for msginfo
fn clone(&Self) -> msginfo
impl Copy for msginfo
impl Debug for msginfo
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Eq for msginfo
impl Hash for msginfo
fn hash<__H: $crate::hash::Hasher>(&Self, state: &mut __H) -> ()
impl PartialEq<msginfo> for msginfo
fn eq(&Self, other: &msginfo) -> bool
fn ne(&Self, other: &msginfo) -> bool
impl StructuralEq for msginfo

Auto Trait Implementations

impl Send for msginfo
impl Sync for msginfo
impl Unpin for msginfo
impl UnwindSafe for msginfo

Blanket Implementations

impl<T> Any for T
where
    T: 'static + ?Sized,
fn type_id(&Self) -> TypeId
impl<T> Borrow<T> for T
where
    T: ?Sized,
fn borrow(&Self) -> &T
impl<T> BorrowMut<T> for T
where
    T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T
impl<T> From<T> for T
fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for T
where
    U: From<T>,
fn into(Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

impl<T, U> TryFrom<U> for T
where
    U: Into<T>,
type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for T
where
    U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn try_into(Self) -> Result<U, <U as TryFrom<T>>::Error>