pub trait VCExecFns<Chain>: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg>where
    Chain: CwEnv,{
    // Provided methods
    fn remove_module(
        &self,
        module: ModuleInfo
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn yank_module(
        &self,
        module: ModuleInfo
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn propose_modules(
        &self,
        modules: Vec<(ModuleInfo, ModuleReference), Global>
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn update_module_configuration(
        &self,
        module_name: String,
        namespace: Namespace,
        update_module: UpdateModule
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn approve_or_reject_modules(
        &self,
        approves: Vec<ModuleInfo, Global>,
        rejects: Vec<ModuleInfo, Global>
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn claim_namespace(
        &self,
        account_id: AccountId,
        namespace: String
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn remove_namespaces(
        &self,
        namespaces: Vec<String, Global>
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn add_account(
        &self,
        account_base: AccountBase,
        account_id: AccountId
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn update_config(
        &self,
        allow_direct_module_registration_and_updates: Option<bool>,
        namespace_registration_fee: Option<Coin>
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn set_factory(
        &self,
        new_factory: String
    ) -> Result<<Chain as TxHandler>::Response, CwEnvError> { ... }
    fn update_ownership(
        &self,
        arg0: Action
    ) -> Result<<Chain as TxHandler>::Response, 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 remove_module( &self, module: ModuleInfo ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::RemoveModule variant

source

fn yank_module( &self, module: ModuleInfo ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::YankModule variant

source

fn propose_modules( &self, modules: Vec<(ModuleInfo, ModuleReference), Global> ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::ProposeModules variant

source

fn update_module_configuration( &self, module_name: String, namespace: Namespace, update_module: UpdateModule ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::UpdateModuleConfiguration variant

source

fn approve_or_reject_modules( &self, approves: Vec<ModuleInfo, Global>, rejects: Vec<ModuleInfo, Global> ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::ApproveOrRejectModules variant

source

fn claim_namespace( &self, account_id: AccountId, namespace: String ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::ClaimNamespace variant

source

fn remove_namespaces( &self, namespaces: Vec<String, Global> ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::RemoveNamespaces variant

source

fn add_account( &self, account_base: AccountBase, account_id: AccountId ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::AddAccount variant

source

fn update_config( &self, allow_direct_module_registration_and_updates: Option<bool>, namespace_registration_fee: Option<Coin> ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::UpdateConfig variant

source

fn set_factory( &self, new_factory: String ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::SetFactory variant

source

fn update_ownership( &self, arg0: Action ) -> Result<<Chain as TxHandler>::Response, CwEnvError>

Automatically generated wrapper around ExecuteMsg::UpdateOwnership variant

Implementors§

source§

impl<SupportedContract, Chain> ExecuteMsgFns<Chain> for SupportedContractwhere Chain: CwEnv, SupportedContract: CwOrchExecute<Chain, ExecuteMsg = ExecuteMsg>,