Struct msqid_ds

#[repr(C)]
pub struct msqid_ds { pub msg_perm: ipc_perm, pub msg_stime: time_t, pub msg_rtime: time_t, pub msg_ctime: time_t, pub __msg_cbytes: u64, pub msg_qnum: msgqnum_t, pub msg_qbytes: msglen_t, pub msg_lspid: pid_t, pub msg_lrpid: pid_t, /* private fields */ }

Fields

msg_perm: ipc_perm
msg_stime: time_t
msg_rtime: time_t
msg_ctime: time_t
__msg_cbytes: u64
msg_qnum: msgqnum_t
msg_qbytes: msglen_t
msg_lspid: pid_t
msg_lrpid: pid_t

Trait Implementations

impl Clone for msqid_ds

fn clone(&self) -> msqid_ds

impl Copy for msqid_ds

impl Debug for msqid_ds

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for msqid_ds

impl Hash for msqid_ds

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for msqid_ds

fn eq(&self, other: &msqid_ds) -> bool

impl StructuralPartialEq for msqid_ds

Auto Trait Implementations

impl Freeze for msqid_ds

impl RefUnwindSafe for msqid_ds

impl Send for msqid_ds

impl Sync for msqid_ds

impl Unpin for msqid_ds

impl UnsafeUnpin for msqid_ds

impl UnwindSafe for msqid_ds

Blanket Implementations

impl<T> Any for msqid_ds where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for msqid_ds where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for msqid_ds where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for msqid_ds where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for msqid_ds

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for msqid_ds where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for msqid_ds where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for msqid_ds where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>