pub struct CALLINFO {
pub prev: Option<Rc<CALLINFO>>,
pub method_id: RSym,
pub pc_irep: Rc<IREP>,
pub pc: usize,
pub current_regs_offset: usize,
pub target_class: TargetContext,
pub n_args: usize,
pub return_reg: usize,
pub method_owner: Option<Rc<RModule>>,
}Fields§
§prev: Option<Rc<CALLINFO>>§method_id: RSym§pc_irep: Rc<IREP>§pc: usize§current_regs_offset: usize§target_class: TargetContext§n_args: usize§return_reg: usize§method_owner: Option<Rc<RModule>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CALLINFO
impl !RefUnwindSafe for CALLINFO
impl !Send for CALLINFO
impl !Sync for CALLINFO
impl Unpin for CALLINFO
impl UnsafeUnpin for CALLINFO
impl !UnwindSafe for CALLINFO
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