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: u64The 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 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 more