pub trait HandleDispatch<S, A, Q, C> where
    S: Storage,
    A: Api,
    Q: Querier,
    C: Composable<S, A, Q>, 
{ fn dispatch_handle(
        self,
        core: &mut C,
        env: Env
    ) -> StdResult<HandleResponse>; }
Expand description

Trait for handle messages

Required Methods

Implementors