Struct shmid_ds
#[repr(C)]
pub struct shmid_ds { pub shm_perm: ipc_perm, pub shm_segsz: size_t, pub shm_atime: time_t, pub shm_dtime: time_t, pub shm_ctime: time_t, pub shm_cpid: pid_t, pub shm_lpid: pid_t, pub shm_nattch: shmatt_t, /* private fields */ }
Fields
shm_perm: ipc_permshm_segsz: size_tshm_atime: time_tshm_dtime: time_tshm_ctime: time_tshm_cpid: pid_tshm_lpid: pid_tshm_nattch: shmatt_t
Trait Implementations
impl Clone for shmid_ds
fn clone(&self) -> shmid_ds
impl Copy for shmid_ds
impl Debug for shmid_ds
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for shmid_ds
impl Hash for shmid_ds
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for shmid_ds
fn eq(&self, other: &shmid_ds) -> bool
impl StructuralPartialEq 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 UnsafeUnpin for shmid_ds
impl UnwindSafe for shmid_ds
Blanket Implementations
impl<T> Any for shmid_ds
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for shmid_ds
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for shmid_ds
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for shmid_ds
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for shmid_ds
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for shmid_ds
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for shmid_ds
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for shmid_ds
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>