Struct fuels_core::code_gen::abigen::Abigen
source · pub struct Abigen;Implementations§
source§impl Abigen
impl Abigen
sourcepub fn generate(
targets: Vec<AbigenTarget>,
no_std: bool
) -> Result<TokenStream, Error>
pub fn generate(
targets: Vec<AbigenTarget>,
no_std: bool
) -> Result<TokenStream, Error>
Generate code which can be used to interact with the underlying contract, script or predicate in a type-safe manner.
Arguments
targets:AbigenTargetsdetailing which ABI to generate bindings for, and of what nature (Contract, Script or Predicate).no_std: don’t use the Rust std library.