Struct winch_codegen::Callee
source · pub struct Callee {
pub ty: FuncType,
pub import: bool,
pub index: u32,
}
Expand description
Metadata about a function callee. Use by the code generation to emit function calls.
Fields§
§ty: FuncType
The function type.
import: bool
A flag to determine if the callee is imported.
index: u32
The callee index in the WebAssembly function index space.
Auto Trait Implementations§
impl RefUnwindSafe for Callee
impl Send for Callee
impl Sync for Callee
impl Unpin for Callee
impl UnwindSafe for Callee
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