Struct memory::EarlyIdentityMappedPages
source · pub struct EarlyIdentityMappedPages { /* private fields */ }
Expand description
The set of identity mappings that should be dropped before starting the first application.
Currently there are only 4 identity mappings, used for the base kernel image:
- the
.init
early text section, - the full
.text
section, - the
.rodata
section, which includes all read-only data, - the
.data
section, which includes.bss
and all read-write data.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for EarlyIdentityMappedPages
impl Send for EarlyIdentityMappedPages
impl Sync for EarlyIdentityMappedPages
impl Unpin for EarlyIdentityMappedPages
impl UnwindSafe for EarlyIdentityMappedPages
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