Struct nix::mqueue::MqAttr [] [src]

pub struct MqAttr {
    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

Methods

impl MqAttr

fn new(mq_flags: c_long, mq_maxmsg: c_long, mq_msgsize: c_long, mq_curmsgs: c_long) -> MqAttr

Trait Implementations

Derived Implementations

impl PartialEq for MqAttr

fn eq(&self, __arg_0: &MqAttr) -> bool

fn ne(&self, __arg_0: &MqAttr) -> bool

impl Eq for MqAttr

impl Debug for MqAttr

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for MqAttr

impl Clone for MqAttr

fn clone(&self) -> MqAttr

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