pub struct Range {
pub address: usize,
pub policy: String,
pub properties: Vec<Property>,
}
Expand description
A memory range, with a base address and a list of properties.
Fields§
§address: usize
The base address of this memory range.
policy: String
The range’s memory policy.
properties: Vec<Property>
Properties associated with the memory range.
Implementations§
Trait Implementations§
Source§impl Ord for Range
impl Ord for Range
Source§impl PartialOrd for Range
impl PartialOrd for Range
impl Eq for Range
impl StructuralPartialEq for Range
Auto Trait Implementations§
impl Freeze for Range
impl RefUnwindSafe for Range
impl Send for Range
impl Sync for Range
impl Unpin for Range
impl UnwindSafe for Range
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