Struct libc::mq_attr [] [src]

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
mq_maxmsg
mq_msgsize
mq_curmsgs

Trait Implementations

impl Copy for mq_attr

impl Clone for mq_attr

fn clone(&self) -> mq_attr

fn clone_from(&mut self, source: &Self)