pub struct MemoryArea<B: MappingBackend> { /* private fields */ }
Expand description
A memory area represents a continuous range of virtual memory with the same flags.
The target physical memory frames are determined by MappingBackend
and
may not be contiguous.
Implementations§
Source§impl<B: MappingBackend> MemoryArea<B>
impl<B: MappingBackend> MemoryArea<B>
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for MemoryArea<B>
impl<B> RefUnwindSafe for MemoryArea<B>where
<B as MappingBackend>::Flags: RefUnwindSafe,
B: RefUnwindSafe,
<B as MappingBackend>::Addr: RefUnwindSafe,
impl<B> Send for MemoryArea<B>
impl<B> Sync for MemoryArea<B>
impl<B> Unpin for MemoryArea<B>
impl<B> UnwindSafe for MemoryArea<B>where
<B as MappingBackend>::Flags: UnwindSafe,
B: UnwindSafe,
<B as MappingBackend>::Addr: 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