pub trait Bank: Module<ExecT = BankMsg, QueryT = BankQuery, SudoT = BankSudo> { }
Expand description
This trait defines the interface for simulating banking operations.
In the test environment, it is essential for testing financial transactions, like transfers and balance checks, within your smart contracts. This trait implements all of these functionalities.
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.