pub trait CallableContractBuilder {
// Required method
fn new_contract_obj<A: VMApi>(&self) -> Box<dyn CallableContract>;
}Expand description
Describes objects that can create instances of contract objects, with the given API.
Required Methods§
fn new_contract_obj<A: VMApi>(&self) -> Box<dyn CallableContract>
Object Safety§
This trait is not object safe.