#[repr(C)]pub struct MappedArea {
pub effective_address: usize,
pub physical_address: usize,
pub size: usize,
}
Expand description
An area described by the initial-mapped-area
property of the /memory
node
Fields§
§effective_address: usize
Effective address of the mapped area
physical_address: usize
Physical address of the mapped area
size: usize
Size of the mapped area
Trait Implementations§
Source§impl Clone for MappedArea
impl Clone for MappedArea
Source§fn clone(&self) -> MappedArea
fn clone(&self) -> MappedArea
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MappedArea
impl Debug for MappedArea
Source§impl PartialEq for MappedArea
impl PartialEq for MappedArea
impl Copy for MappedArea
impl StructuralPartialEq for MappedArea
Auto Trait Implementations§
impl Freeze for MappedArea
impl RefUnwindSafe for MappedArea
impl Send for MappedArea
impl Sync for MappedArea
impl Unpin for MappedArea
impl UnwindSafe for MappedArea
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