#[repr(C, packed(4))]pub struct shmid_ds {
pub shm_perm: ipc_perm,
pub shm_segsz: usize,
pub shm_lpid: i32,
pub shm_cpid: i32,
pub shm_nattch: u16,
pub shm_atime: i64,
pub shm_dtime: i64,
pub shm_ctime: i64,
pub shm_internal: *mut c_void,
}Fields§
§shm_perm: ipc_perm§shm_segsz: usize§shm_lpid: i32§shm_cpid: i32§shm_nattch: u16§shm_atime: i64§shm_dtime: i64§shm_ctime: i64§shm_internal: *mut c_voidTrait Implementations§
impl Copy for shmid_ds
impl Eq for shmid_ds
Auto Trait Implementations§
impl Freeze for shmid_ds
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§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more