pub struct JitCodeUnwindingInfoRecord<'a> {
pub mapped_size: u64,
pub eh_frame_hdr: RawData<'a>,
pub eh_frame: RawData<'a>,
}
Expand description
A parsed JIT_CODE_UNWINDING_INFO
record, with eh_frame
data for a single jitted function.
Fields§
§mapped_size: u64
The size of the unwinding data mapped in memory. This is either zero or equal to eh_frame_header.len() + eh_frame.len()
.
eh_frame_hdr: RawData<'a>
The eh_frame_hdr data. This provides an index for the eh_frame data.
eh_frame: RawData<'a>
The eh_frame data.
Implementations§
Source§impl<'a> JitCodeUnwindingInfoRecord<'a>
impl<'a> JitCodeUnwindingInfoRecord<'a>
Trait Implementations§
Source§impl<'a> Clone for JitCodeUnwindingInfoRecord<'a>
impl<'a> Clone for JitCodeUnwindingInfoRecord<'a>
Source§fn clone(&self) -> JitCodeUnwindingInfoRecord<'a>
fn clone(&self) -> JitCodeUnwindingInfoRecord<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for JitCodeUnwindingInfoRecord<'a>
impl<'a> RefUnwindSafe for JitCodeUnwindingInfoRecord<'a>
impl<'a> Send for JitCodeUnwindingInfoRecord<'a>
impl<'a> Sync for JitCodeUnwindingInfoRecord<'a>
impl<'a> Unpin for JitCodeUnwindingInfoRecord<'a>
impl<'a> UnwindSafe for JitCodeUnwindingInfoRecord<'a>
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