Struct external_unwind_info::ExternalUnwindInfo
source · pub struct ExternalUnwindInfo {
pub text_section: Range<VirtualAddress>,
pub unwind_info: Range<VirtualAddress>,
}
Expand description
Unwinding information for an external (non-Theseus) component.
Fields§
§text_section: Range<VirtualAddress>
The bounds of the text section that this unwinding info pertains to.
unwind_info: Range<VirtualAddress>
The bounds of the unwinding information (e.g., .eh_frame
) for the above text section.
Trait Implementations§
source§impl Clone for ExternalUnwindInfo
impl Clone for ExternalUnwindInfo
source§fn clone(&self) -> ExternalUnwindInfo
fn clone(&self) -> ExternalUnwindInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for ExternalUnwindInfo
impl Send for ExternalUnwindInfo
impl Sync for ExternalUnwindInfo
impl Unpin for ExternalUnwindInfo
impl UnwindSafe for ExternalUnwindInfo
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