#[repr(C)]pub struct ipc_perm {
    pub __key: key_t,
    pub uid: uid_t,
    pub gid: gid_t,
    pub cuid: uid_t,
    pub cgid: gid_t,
    pub mode: c_ushort,
    __pad1: c_ushort,
    pub __seq: c_ushort,
    __pad2: c_ushort,
    __unused1: u64,
    __unused2: u64,
}Fields§
§__key: key_t§uid: uid_t§gid: gid_t§cuid: uid_t§cgid: gid_t§mode: c_ushort§__pad1: c_ushort§__seq: c_ushort§__pad2: c_ushort§__unused1: u64§__unused2: u64Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ipc_perm
impl Send for ipc_perm
impl Sync for ipc_perm
impl Unpin for ipc_perm
impl UnwindSafe for ipc_perm
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more