[][src]Struct uapi::c::mq_attr

#[repr(C)]pub struct mq_attr {
    pub mq_flags: i64,
    pub mq_maxmsg: i64,
    pub mq_msgsize: i64,
    pub mq_curmsgs: i64,
    // some fields omitted
}

Fields

mq_flags: i64mq_maxmsg: i64mq_msgsize: i64mq_curmsgs: i64

Trait Implementations

impl Clone for mq_attr[src]

impl Copy for mq_attr[src]

Auto Trait Implementations

impl RefUnwindSafe for mq_attr

impl Send for mq_attr

impl Sync for mq_attr

impl Unpin for mq_attr

impl UnwindSafe for mq_attr

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.