pub struct kinfo_vmentry {Show 21 fields
pub kve_structsize: c_int,
pub kve_type: c_int,
pub kve_start: u64,
pub kve_end: u64,
pub kve_offset: u64,
pub kve_vn_fileid: u64,
pub kve_vn_fsid_freebsd11: u32,
pub kve_flags: c_int,
pub kve_resident: c_int,
pub kve_private_resident: c_int,
pub kve_protection: c_int,
pub kve_ref_count: c_int,
pub kve_shadow_count: c_int,
pub kve_vn_type: c_int,
pub kve_vn_size: u64,
pub kve_vn_rdev_freebsd11: u32,
pub kve_vn_mode: u16,
pub kve_status: u16,
pub kve_vn_fsid: u64,
pub kve_vn_rdev: u64,
pub kve_path: [[c_char; 32]; 32],
/* private fields */
}Fields§
§kve_structsize: c_int§kve_type: c_int§kve_start: u64§kve_end: u64§kve_offset: u64§kve_vn_fileid: u64§kve_vn_fsid_freebsd11: u32§kve_flags: c_int§kve_resident: c_int§kve_private_resident: c_int§kve_protection: c_int§kve_ref_count: c_int§kve_shadow_count: c_int§kve_vn_type: c_int§kve_vn_size: u64§kve_vn_rdev_freebsd11: u32§kve_vn_mode: u16§kve_status: u16§kve_vn_fsid: u64§kve_vn_rdev: u64§kve_path: [[c_char; 32]; 32]Trait Implementations§
Source§impl Clone for kinfo_vmentry
impl Clone for kinfo_vmentry
Source§fn clone(&self) -> kinfo_vmentry
fn clone(&self) -> kinfo_vmentry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for kinfo_vmentry
impl Debug for kinfo_vmentry
impl Copy for kinfo_vmentry
Auto Trait Implementations§
impl Freeze for kinfo_vmentry
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§
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