pub struct FinalizedMachCallSite<'a> {
pub ret_addr: CodeOffset,
pub exception_handlers: &'a [(PackedOption<ExceptionTag>, CodeOffset)],
}
Expand description
A call site record resulting from a compilation.
Fields§
§ret_addr: CodeOffset
The offset of the call’s return address, relative to the start of the buffer.
exception_handlers: &'a [(PackedOption<ExceptionTag>, CodeOffset)]
Exception handlers at this callsite, with target offsets relative to the start of the buffer.
Trait Implementations§
Source§impl<'a> Clone for FinalizedMachCallSite<'a>
impl<'a> Clone for FinalizedMachCallSite<'a>
Source§fn clone(&self) -> FinalizedMachCallSite<'a>
fn clone(&self) -> FinalizedMachCallSite<'a>
Returns a duplicate 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 moreSource§impl<'a> Debug for FinalizedMachCallSite<'a>
impl<'a> Debug for FinalizedMachCallSite<'a>
Source§impl<'a> PartialEq for FinalizedMachCallSite<'a>
impl<'a> PartialEq for FinalizedMachCallSite<'a>
impl<'a> StructuralPartialEq for FinalizedMachCallSite<'a>
Auto Trait Implementations§
impl<'a> Freeze for FinalizedMachCallSite<'a>
impl<'a> RefUnwindSafe for FinalizedMachCallSite<'a>
impl<'a> Send for FinalizedMachCallSite<'a>
impl<'a> Sync for FinalizedMachCallSite<'a>
impl<'a> Unpin for FinalizedMachCallSite<'a>
impl<'a> UnwindSafe for FinalizedMachCallSite<'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