pub trait CallableContract: Send + Sync { // Required method fn call(&self, fn_name: &str) -> bool; }
CallableContract is the means by which the debugger calls methods in the contract.