Struct memprocfs::VmmMapPoolEntry
source · pub struct VmmMapPoolEntry {
pub va: u64,
pub cb: u32,
pub tag: u32,
pub is_alloc: bool,
pub tp_pool: u8,
pub tp_subsegment: u8,
}
Expand description
Fields§
§va: u64
§cb: u32
§tag: u32
§is_alloc: bool
§tp_pool: u8
§tp_subsegment: u8
Implementations§
source§impl VmmMapPoolEntry
impl VmmMapPoolEntry
sourcepub fn tag_to_string(&self) -> String
pub fn tag_to_string(&self) -> String
Retrieve the pool entry tag String.
Trait Implementations§
source§impl Clone for VmmMapPoolEntry
impl Clone for VmmMapPoolEntry
source§fn clone(&self) -> VmmMapPoolEntry
fn clone(&self) -> VmmMapPoolEntry
Returns a copy 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 VmmMapPoolEntry
impl Debug for VmmMapPoolEntry
source§impl<'de> Deserialize<'de> for VmmMapPoolEntry
impl<'de> Deserialize<'de> for VmmMapPoolEntry
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 VmmMapPoolEntry
impl Display for VmmMapPoolEntry
source§impl PartialEq<VmmMapPoolEntry> for VmmMapPoolEntry
impl PartialEq<VmmMapPoolEntry> for VmmMapPoolEntry
Auto Trait Implementations§
impl RefUnwindSafe for VmmMapPoolEntry
impl Send for VmmMapPoolEntry
impl Sync for VmmMapPoolEntry
impl Unpin for VmmMapPoolEntry
impl UnwindSafe for VmmMapPoolEntry
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