pub struct FlatRange {
pub addr: GPA,
pub size: u64,
pub kind: FlatRangeKind,
pub offset_in_region: u64,
}Expand description
A single non-overlapping range in the flattened address
map. offset_in_region is the byte offset from the
start of the owning leaf region that corresponds to
addr.
Fields§
§addr: GPA§size: u64§kind: FlatRangeKind§offset_in_region: u64Implementations§
Auto Trait Implementations§
impl Freeze for FlatRange
impl RefUnwindSafe for FlatRange
impl Send for FlatRange
impl Sync for FlatRange
impl Unpin for FlatRange
impl UnsafeUnpin for FlatRange
impl UnwindSafe for FlatRange
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