pub struct LeafPageTableEntryView<C: PageTableConfig> {
pub map_va: int,
pub map_to_pa: int,
pub level: PagingLevel,
pub prop: PageProperty,
pub phantom: PhantomData<C>,
}Fields§
§map_va: int§map_to_pa: int§level: PagingLevel§prop: PageProperty§phantom: PhantomData<C>Implementations§
Source§impl<C: PageTableConfig> LeafPageTableEntryView<C>
impl<C: PageTableConfig> LeafPageTableEntryView<C>
Source§impl<C: PageTableConfig> LeafPageTableEntryView<C>
impl<C: PageTableConfig> LeafPageTableEntryView<C>
Sourcepub open spec fn to_frame_view(self) -> FrameView<C>
pub open spec fn to_frame_view(self) -> FrameView<C>
{
FrameView {
ancestor_chain: Map::empty(),
leaf: self,
}
}Trait Implementations§
Source§impl<C: PageTableConfig> Inv for LeafPageTableEntryView<C>
impl<C: PageTableConfig> Inv for LeafPageTableEntryView<C>
Auto Trait Implementations§
impl<C> Freeze for LeafPageTableEntryView<C>
impl<C> RefUnwindSafe for LeafPageTableEntryView<C>where
C: RefUnwindSafe,
impl<C> Send for LeafPageTableEntryView<C>
impl<C> Sync for LeafPageTableEntryView<C>
impl<C> Unpin for LeafPageTableEntryView<C>where
C: Unpin,
impl<C> UnwindSafe for LeafPageTableEntryView<C>where
C: UnwindSafe,
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