Struct libc::kinfo_vmentry
source · [−]#[repr(C)]pub struct kinfo_vmentry {Show 13 fields
pub kve_start: c_ulong,
pub kve_end: c_ulong,
pub kve_guard: c_ulong,
pub kve_fspace: c_ulong,
pub kve_fspace_augment: c_ulong,
pub kve_offset: u64,
pub kve_wired_count: c_int,
pub kve_etype: c_int,
pub kve_protection: c_int,
pub kve_max_protection: c_int,
pub kve_advice: c_int,
pub kve_inheritance: c_int,
pub kve_flags: u8,
}
Fields
kve_start: c_ulong
kve_end: c_ulong
kve_guard: c_ulong
kve_fspace: c_ulong
kve_fspace_augment: c_ulong
kve_offset: u64
kve_wired_count: c_int
kve_etype: c_int
kve_protection: c_int
kve_max_protection: c_int
kve_advice: c_int
kve_inheritance: c_int
kve_flags: u8
Trait Implementations
sourceimpl Clone for kinfo_vmentry
impl Clone for kinfo_vmentry
sourcefn clone(&self) -> kinfo_vmentry
fn clone(&self) -> kinfo_vmentry
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for kinfo_vmentry
impl Debug for kinfo_vmentry
sourceimpl Hash for kinfo_vmentry
impl Hash for kinfo_vmentry
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
sourceimpl PartialEq<kinfo_vmentry> for kinfo_vmentry
impl PartialEq<kinfo_vmentry> for kinfo_vmentry
sourcefn eq(&self, other: &kinfo_vmentry) -> bool
fn eq(&self, other: &kinfo_vmentry) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &kinfo_vmentry) -> bool
fn ne(&self, other: &kinfo_vmentry) -> bool
This method tests for !=
.
impl Copy for kinfo_vmentry
impl Eq for kinfo_vmentry
impl StructuralEq for kinfo_vmentry
impl StructuralPartialEq for kinfo_vmentry
Auto Trait Implementations
impl RefUnwindSafe for kinfo_vmentry
impl Send for kinfo_vmentry
impl Sync for kinfo_vmentry
impl Unpin for kinfo_vmentry
impl UnwindSafe for kinfo_vmentry
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