Struct cairo_lang_lowering::lower::generators::Call
source · pub struct Call {
pub function: FunctionId,
pub inputs: Vec<VarUsage>,
pub extra_ret_tys: Vec<TypeId>,
pub ret_tys: Vec<TypeId>,
pub location: LocationId,
}Expand description
Generator for StatementCall. Note that builder.finalize_statement() must be called manually after ref bindings.
Fields§
§function: FunctionIdCalled function.
inputs: Vec<VarUsage>Inputs to function.
extra_ret_tys: Vec<TypeId>Types for ref parameters of the function. An output variable will be introduced for each.
ret_tys: Vec<TypeId>Types for the returns of the function. An output variable will be introduced for each.
location: LocationIdLocation associated with this statement.
Implementations§
source§impl Call
impl Call
sourcepub fn add(
self,
ctx: &mut LoweringContext<'_, '_>,
builder: &mut StatementsBuilder
) -> CallResult
pub fn add( self, ctx: &mut LoweringContext<'_, '_>, builder: &mut StatementsBuilder ) -> CallResult
Adds a call statement to the builder.
Auto Trait Implementations§
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnwindSafe for Call
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