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

Methods

impl MqAttr
[src]

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

Trait Implementations

impl PartialEq for MqAttr
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Eq for MqAttr
[src]

impl Debug for MqAttr
[src]

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

Formats the value using the given formatter.

impl Copy for MqAttr
[src]

impl Clone for MqAttr
[src]

fn clone(&self) -> MqAttr

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more