[][src]Struct libc::mq_attr

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

Fields

mq_flags: c_longmq_maxmsg: c_longmq_msgsize: c_longmq_curmsgs: c_long

Trait Implementations

impl Copy for mq_attr[src]

impl Clone for mq_attr[src]

Auto Trait Implementations

impl Unpin for mq_attr

impl Send for mq_attr

impl Sync for mq_attr

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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]