Trait abstract_interface::MFactoryQueryFns
source · pub trait MFactoryQueryFns<Chain>: CwOrchQuery<Chain, QueryMsg = QueryMsg>where
Chain: CwEnv,{
// Provided methods
fn config(&self) -> Result<ConfigResponse, CwEnvError> { ... }
fn context(&self) -> Result<ContextResponse, CwEnvError> { ... }
fn simulate_install_modules(
&self,
modules: Vec<ModuleInfo, Global>
) -> 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§
sourcefn config(&self) -> Result<ConfigResponse, CwEnvError>
fn config(&self) -> Result<ConfigResponse, CwEnvError>
Automatically generated wrapper around QueryMsg::Config variant
sourcefn context(&self) -> Result<ContextResponse, CwEnvError>
fn context(&self) -> Result<ContextResponse, CwEnvError>
Automatically generated wrapper around QueryMsg::Context variant
sourcefn simulate_install_modules(
&self,
modules: Vec<ModuleInfo, Global>
) -> Result<SimulateInstallModulesResponse, CwEnvError>
fn simulate_install_modules( &self, modules: Vec<ModuleInfo, Global> ) -> Result<SimulateInstallModulesResponse, CwEnvError>
Automatically generated wrapper around QueryMsg::SimulateInstallModules variant