pub trait QueryDispatch<S, A, Q, C, R> where
    S: Storage,
    A: Api,
    Q: Querier,
    C: Composable<S, A, Q>, 
{ fn dispatch_query(self, core: &C) -> StdResult<R>; }
Expand description

Trait for query messages

Required Methods

Implementors