Trait ToTxEnv
pub trait ToTxEnv<TxEnv> {
// Required method
fn to_tx_env(&self) -> TxEnv;
}
Available on crate feature
evm
only.Expand description
A helper trait to allow implementing IntoTxEnv
for types that build transaction environment
by cloning data.