Trait FillTxEnv
pub trait FillTxEnv<TxEnv> {
// Required method
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address);
}Expand description
Loads transaction into execution environment.
Required Methods§
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address)
fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address)
Fills TxEnv with an [Address] and transaction.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".