pub(crate) struct RawRange {
pub begin: u64,
pub end: u64,
}
Expand description
A raw address range from the .debug_ranges
section.
Fields§
§begin: u64
The beginning address of the range.
end: u64
The first address past the end of the range.
Implementations§
Trait Implementations§
source§impl PartialEq for RawRange
impl PartialEq for RawRange
impl Copy for RawRange
impl Eq for RawRange
impl StructuralPartialEq for RawRange
Auto Trait Implementations§
impl Freeze for RawRange
impl RefUnwindSafe for RawRange
impl Send for RawRange
impl Sync for RawRange
impl Unpin for RawRange
impl UnwindSafe for RawRange
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