pub struct DirtyPageInfo {
pub guest_addr: u64,
pub size: u64,
}Expand description
Dirty page tracking info.
Fields§
§guest_addr: u64Guest physical address of the page.
size: u64Page size (usually 4KB).
Trait Implementations§
Source§impl Clone for DirtyPageInfo
impl Clone for DirtyPageInfo
Source§fn clone(&self) -> DirtyPageInfo
fn clone(&self) -> DirtyPageInfo
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 moreAuto Trait Implementations§
impl Freeze for DirtyPageInfo
impl RefUnwindSafe for DirtyPageInfo
impl Send for DirtyPageInfo
impl Sync for DirtyPageInfo
impl Unpin for DirtyPageInfo
impl UnsafeUnpin for DirtyPageInfo
impl UnwindSafe for DirtyPageInfo
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