Struct 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, /* private fields */ }
Fields
mq_flags: c_longmq_maxmsg: c_longmq_msgsize: c_longmq_curmsgs: c_long
Trait Implementations
impl Clone for mq_attr
fn clone(&self) -> mq_attr
impl Copy for mq_attr
impl Debug for mq_attr
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for mq_attr
impl Hash for mq_attr
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for mq_attr
fn eq(&self, other: &mq_attr) -> bool
impl StructuralPartialEq for mq_attr
Auto Trait Implementations
impl Freeze for mq_attr
impl RefUnwindSafe for mq_attr
impl Send for mq_attr
impl Sync for mq_attr
impl Unpin for mq_attr
impl UnsafeUnpin for mq_attr
impl UnwindSafe for mq_attr
Blanket Implementations
impl<T> Any for mq_attr
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for mq_attr
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for mq_attr
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for mq_attr
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for mq_attr
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for mq_attr
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for mq_attr
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for mq_attr
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>