pub struct PageEntryUpdate {
pub view: View,
pub ctx: AddressContext,
pub pa: Pa,
}Expand description
Page Entry Update.
Page entry update that represents a change in a page table entry.
Fields§
§view: ViewView in which the update occurred.
ctx: AddressContextVirtual address context.
pa: PaPhysical address.
Trait Implementations§
Source§impl Clone for PageEntryUpdate
impl Clone for PageEntryUpdate
Source§fn clone(&self) -> PageEntryUpdate
fn clone(&self) -> PageEntryUpdate
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 PageEntryUpdate
impl Debug for PageEntryUpdate
impl Copy for PageEntryUpdate
Auto Trait Implementations§
impl Freeze for PageEntryUpdate
impl RefUnwindSafe for PageEntryUpdate
impl Send for PageEntryUpdate
impl Sync for PageEntryUpdate
impl Unpin for PageEntryUpdate
impl UnwindSafe for PageEntryUpdate
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