Trait abstract_interface::MFactoryQueryFns

source ·
pub trait MFactoryQueryFns<Chain>: CwOrchQuery<Chain, QueryMsg = QueryMsg>
where Chain: QueryHandler + ChainState,
{ // Provided methods fn config(&self) -> Result<ConfigResponse, CwEnvError> { ... } fn simulate_install_modules( &self, modules: Vec<ModuleInfo> ) -> Result<SimulateInstallModulesResponse, CwEnvError> { ... } fn ownership(&self) -> Result<Ownership<String>, CwEnvError> { ... } }
Expand description

Automatically derived trait that allows you to call the variants of the message directly without the need to construct the struct yourself.

Provided Methods§

source

fn config(&self) -> Result<ConfigResponse, CwEnvError>

Automatically generated wrapper around QueryMsg::Config variant

source

fn simulate_install_modules( &self, modules: Vec<ModuleInfo> ) -> Result<SimulateInstallModulesResponse, CwEnvError>

Automatically generated wrapper around QueryMsg::SimulateInstallModules variant

source

fn ownership(&self) -> Result<Ownership<String>, CwEnvError>

Automatically generated wrapper around QueryMsg::Ownership variant

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<SupportedContract, Chain> QueryMsgFns<Chain> for SupportedContract
where Chain: QueryHandler + ChainState, SupportedContract: CwOrchQuery<Chain, QueryMsg = QueryMsg>,