pub struct GlaListEntry(/* private fields */);
Expand description
The GlaListEntry
species a range of consecutive guest linear addresses, each aligned on 4KB.
The GlaListEntry
consists of the following fields:
- Bit 0-11 LAST_GLA_INDEX: Index of the last 4KB-aligned linear address to be processed.
- Bit 12-63 BASE_GLA: Bits 63:12 of the guest linear address of the first 4KB page to be processed.
Auto Trait Implementations§
impl Freeze for GlaListEntry
impl RefUnwindSafe for GlaListEntry
impl Send for GlaListEntry
impl Sync for GlaListEntry
impl Unpin for GlaListEntry
impl UnwindSafe for GlaListEntry
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