pub struct CallInfo {
pub callee: Option<Symbol>,
pub signature: Sig,
}Expand description
What a call needs beyond its arguments.
Fields§
§callee: Option<Symbol>The name, for a direct call. None for a call through an address, where the address is
the first operand.
signature: SigThe signature it is called with, which is where the ABI attributes are.
Trait Implementations§
impl Copy for CallInfo
impl Eq for CallInfo
impl StructuralPartialEq for CallInfo
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