pub struct VmmProcessMapVadEntry {Show 16 fields
pub pid: u32,
pub va_start: u64,
pub va_end: u64,
pub va_vad: u64,
pub u0: u32,
pub u1: u32,
pub u2: u32,
pub commit_charge: u32,
pub is_mem_commit: bool,
pub cb_prototype_pte: u32,
pub va_prototype_pte: u64,
pub va_subsection: u64,
pub va_file_object: u64,
pub info: String,
pub vadex_page_base: u32,
pub vadex_page_count: u32,
}
Expand description
Fields§
§pid: u32
§va_start: u64
§va_end: u64
§va_vad: u64
§u0: u32
§u1: u32
§u2: u32
§commit_charge: u32
§is_mem_commit: bool
§cb_prototype_pte: u32
§va_prototype_pte: u64
§va_subsection: u64
§va_file_object: u64
§info: String
§vadex_page_base: u32
§vadex_page_count: u32
Trait Implementations§
Source§impl Clone for VmmProcessMapVadEntry
impl Clone for VmmProcessMapVadEntry
Source§fn clone(&self) -> VmmProcessMapVadEntry
fn clone(&self) -> VmmProcessMapVadEntry
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 VmmProcessMapVadEntry
impl Debug for VmmProcessMapVadEntry
Source§impl<'de> Deserialize<'de> for VmmProcessMapVadEntry
impl<'de> Deserialize<'de> for VmmProcessMapVadEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for VmmProcessMapVadEntry
impl Display for VmmProcessMapVadEntry
Auto Trait Implementations§
impl Freeze for VmmProcessMapVadEntry
impl RefUnwindSafe for VmmProcessMapVadEntry
impl Send for VmmProcessMapVadEntry
impl Sync for VmmProcessMapVadEntry
impl Unpin for VmmProcessMapVadEntry
impl UnwindSafe for VmmProcessMapVadEntry
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