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: u8Implementations§
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 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 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 for VmmMapPoolEntry
impl PartialEq for VmmMapPoolEntry
Source§impl Serialize for VmmMapPoolEntry
impl Serialize for VmmMapPoolEntry
impl Copy for VmmMapPoolEntry
Auto Trait Implementations§
impl Freeze for VmmMapPoolEntry
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