Struct twizzler_runtime_api::AddrRange
source · pub struct AddrRange {
pub start: usize,
pub len: usize,
}
Expand description
An address range.
Fields§
§start: usize
Starting virtual address.
len: usize
Length of the range.
Trait Implementations§
source§impl Ord for AddrRange
impl Ord for AddrRange
source§impl PartialEq<AddrRange> for AddrRange
impl PartialEq<AddrRange> for AddrRange
source§impl PartialOrd<AddrRange> for AddrRange
impl PartialOrd<AddrRange> for AddrRange
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for AddrRange
impl Eq for AddrRange
impl StructuralEq for AddrRange
impl StructuralPartialEq for AddrRange
Auto Trait Implementations§
impl RefUnwindSafe for AddrRange
impl Send for AddrRange
impl Sync for AddrRange
impl Unpin for AddrRange
impl UnwindSafe for AddrRange
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