pub enum CallInfo<'a> {
    NotACall,
    Direct(FuncRef&'a [Value]),
    Indirect(SigRef&'a [Value]),
}
Expand description

Information about call instructions.

Variants

NotACall

This is not a call instruction.

Direct(FuncRef&'a [Value])

This is a direct call to an external function declared in the preamble. See DataFlowGraph.ext_funcs.

Indirect(SigRef&'a [Value])

This is an indirect call with the specified signature. See DataFlowGraph.signatures.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.