Trait AccountExecutor

Source
pub trait AccountExecutor: AccountIdentification {
    // Provided method
    fn execute_on_account(
        &self,
        deps: Deps<'_>,
        msg: &ExecuteMsg,
        funds: Vec<Coin>,
    ) -> AbstractSdkResult<CosmosMsg> { ... }
}
Expand description

Trait for modules that are allowed to execute on the account.

Provided Methods§

Source

fn execute_on_account( &self, deps: Deps<'_>, msg: &ExecuteMsg, funds: Vec<Coin>, ) -> AbstractSdkResult<CosmosMsg>

Execute method on account contract

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§