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.
pub trait CallableContractBuilder {
// Required method
fn new_contract_obj<A: VMApi>(&self) -> Box<dyn CallableContract>;
}
Describes objects that can create instances of contract objects, with the given API.