pub enum PageTableMonitorEvent {
PageIn(PageEntryUpdate),
PageOut(PageEntryUpdate),
}Expand description
Page Table Monitor Event.
Page table monitor event that represents a change in the page table hierarchy.
Variants§
PageIn(PageEntryUpdate)
Page In.
This event is generated when a monitored virtual address becomes backed by physical memory.
PageOut(PageEntryUpdate)
Page Out.
This event is generated when a monitored virtual address is no longer backed by physical memory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageTableMonitorEvent
impl RefUnwindSafe for PageTableMonitorEvent
impl Send for PageTableMonitorEvent
impl Sync for PageTableMonitorEvent
impl Unpin for PageTableMonitorEvent
impl UnwindSafe for PageTableMonitorEvent
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