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
.initearly text section, - the full
.textsection, - the
.rodatasection, which includes all read-only data, - the
.datasection, which includes.bssand 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