pub trait CallableContractBuilder {
    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§

Implementors§