pub trait QueryableContract {
    type QueryMsg: Serialize + Debug;
}
Expand description

Trait that indicates that the contract can be queried with the associated message.

Required Associated Types§

source

type QueryMsg: Serialize + Debug

Query message for the contract.

Implementors§