pub struct kinfo_file {
pub kf_structsize: c_int,
pub kf_type: c_int,
pub kf_fd: c_int,
pub kf_ref_count: c_int,
pub kf_flags: c_int,
pub kf_offset: i64,
pub kf_status: u16,
pub kf_cap_rights: cap_rights_t,
pub kf_path: [c_char; 1024],
/* private fields */
}Fields§
§kf_structsize: c_int§kf_type: c_int§kf_fd: c_int§kf_ref_count: c_int§kf_flags: c_int§kf_offset: i64§kf_status: u16§kf_cap_rights: cap_rights_t§kf_path: [c_char; 1024]Trait Implementations§
Source§impl Clone for kinfo_file
impl Clone for kinfo_file
Source§fn clone(&self) -> kinfo_file
fn clone(&self) -> kinfo_file
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_file
impl Debug for kinfo_file
impl Copy for kinfo_file
Auto Trait Implementations§
impl Freeze for kinfo_file
impl RefUnwindSafe for kinfo_file
impl Send for kinfo_file
impl Sync for kinfo_file
impl Unpin for kinfo_file
impl UnwindSafe for kinfo_file
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