pub(crate) struct RawRange {
    pub begin: u64,
    pub end: u64,
}Expand description
A raw address range from the .debug_ranges section.
Fields§
§begin: u64The beginning address of the range.
end: u64The first address past the end of the range.
Implementations§
Trait Implementations§
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