[][src]Trait elrond_wasm::CallableContract

pub trait CallableContract {
    fn call(&self, fn_name: &'static str);
fn clone_contract(&self) -> Box<dyn CallableContract>

Notable traits for Box<I>

impl<I> Iterator for Box<I> where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;impl<F> Future for Box<F> where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
; }

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

Required methods

fn call(&self, fn_name: &'static str)

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

Notable traits for Box<I>

impl<I> Iterator for Box<I> where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;impl<F> Future for Box<F> where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;

Loading content...

Implementors

Loading content...