pub trait CallableContract {
    // Required methods
    fn call(&self, fn_name: &[u8]) -> bool;
    fn clone_obj(&self) -> Box<dyn CallableContract>;
}
Expand description

CallableContract is the means by which the debugger calls methods in the contract.

Required Methods§

source

fn call(&self, fn_name: &[u8]) -> bool

source

fn clone_obj(&self) -> Box<dyn CallableContract>

Implementors§