pub trait MFactoryQueryFns<Chain>: CwOrcQuery<Chain, QueryMsg = QueryMsg>where
    Chain: CwEnv,{
    // Provided methods
    fn config(&self) -> Result<ConfigResponse, CwOrchError> { ... }
    fn context(&self) -> Result<ContextResponse, CwOrchError> { ... }
    fn ownership(&self) -> Result<Ownership<String>, CwOrchError> { ... }
}

Provided Methods§

Implementors§

source§

impl<SupportedContract, Chain> QueryMsgFns<Chain> for SupportedContractwhere Chain: CwEnv, SupportedContract: CwOrcQuery<Chain, QueryMsg = QueryMsg>,