pub struct FunctionCallConcreteLibfunc {
pub function: Function,
pub signature: LibfuncSignature,
}
Fields§
§function: Function
§signature: LibfuncSignature
Trait Implementations§
source§impl SignatureBasedConcreteLibfunc for FunctionCallConcreteLibfunc
impl SignatureBasedConcreteLibfunc for FunctionCallConcreteLibfunc
fn signature(&self) -> &LibfuncSignature
Auto Trait Implementations§
impl RefUnwindSafe for FunctionCallConcreteLibfunc
impl Send for FunctionCallConcreteLibfunc
impl Sync for FunctionCallConcreteLibfunc
impl Unpin for FunctionCallConcreteLibfunc
impl UnwindSafe for FunctionCallConcreteLibfunc
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
source§impl<TSignatureBasedConcreteLibfunc> ConcreteLibfunc for TSignatureBasedConcreteLibfuncwhere
TSignatureBasedConcreteLibfunc: SignatureBasedConcreteLibfunc,
impl<TSignatureBasedConcreteLibfunc> ConcreteLibfunc for TSignatureBasedConcreteLibfuncwhere TSignatureBasedConcreteLibfunc: SignatureBasedConcreteLibfunc,
source§fn param_signatures(&self) -> &[ParamSignature]
fn param_signatures(&self) -> &[ParamSignature]
The parameter types and other information for the parameters for calling a library
function.
source§fn branch_signatures(&self) -> &[BranchSignature]
fn branch_signatures(&self) -> &[BranchSignature]
The output types and other information returning from a library function per branch.
source§fn fallthrough(&self) -> Option<usize>
fn fallthrough(&self) -> Option<usize>
The index of the fallthrough branch of the library function if any.
source§fn output_types(&self) -> Vec<Vec<ConcreteTypeId>>
fn output_types(&self) -> Vec<Vec<ConcreteTypeId>>
Returns the output types returning from a library function per branch.