[][src]Struct nc::ipc_perm_t

#[repr(C)]
pub struct ipc_perm_t {
    pub key: key_t,
    pub uid: uid_t,
    pub gid: gid_t,
    pub cuid: uid_t,
    pub cgid: gid_t,
    pub mode: mode_t,
    pub seq: u16,
}

Obsolete, used only for backwards compatibility and libc5 compiles

Fields

key: key_tuid: uid_tgid: gid_tcuid: uid_tcgid: gid_tmode: mode_tseq: u16

Trait Implementations

impl Copy for ipc_perm_t[src]

impl Clone for ipc_perm_t[src]

Auto Trait Implementations

impl Unpin for ipc_perm_t

impl Send for ipc_perm_t

impl Sync for ipc_perm_t

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.