[][src]Struct nc::types::shmid_ds_t

#[repr(C)]
pub struct shmid_ds_t {
    pub shm_perm: ipc_perm_t,
    pub shm_segsz: i32,
    pub shm_atime: time_t,
    pub shm_dtime: time_t,
    pub shm_ctime: time_t,
    pub shm_cpid: ipc_pid_t,
    pub shm_lpid: ipc_pid_t,
    pub shm_nattch: u16,
    // some fields omitted
}

Obsolete, used only for backwards compatibility and libc5 compiles

Fields

shm_perm: ipc_perm_t

operation perms

shm_segsz: i32

size of segment (bytes)

shm_atime: time_t

last attach time

shm_dtime: time_t

last detach time

shm_ctime: time_t
  • last change time
shm_cpid: ipc_pid_t

pid of creator

shm_lpid: ipc_pid_t

pid of last operator

shm_nattch: u16

no. of current attaches

Auto Trait Implementations

impl Unpin for shmid_ds_t

impl Send for shmid_ds_t

impl Sync for shmid_ds_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]