#[repr(C)]pub struct shmid_ds {
pub shm_perm: ipc_perm,
pub shm_segsz: c_int,
pub shm_lpid: pid_t,
pub shm_cpid: pid_t,
pub shm_nattch: c_short,
pub shm_atime: time_t,
pub shm_dtime: time_t,
pub shm_ctime: time_t,
pub shm_internal: *mut c_void,
/* private fields */
}
Fields
shm_perm: ipc_perm
shm_segsz: c_int
shm_lpid: pid_t
shm_cpid: pid_t
shm_nattch: c_short
shm_atime: time_t
shm_dtime: time_t
shm_ctime: time_t
shm_internal: *mut c_void
Trait Implementations
sourceimpl Hash for shmid_ds
impl Hash for shmid_ds
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Copy for shmid_ds
impl Eq for shmid_ds
impl StructuralEq for shmid_ds
impl StructuralPartialEq for shmid_ds
Auto Trait Implementations
impl RefUnwindSafe for shmid_ds
impl !Send for shmid_ds
impl !Sync for shmid_ds
impl Unpin for shmid_ds
impl UnwindSafe for shmid_ds
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more