Trait ToTxEnv
pub trait ToTxEnv<TxEnv> {
// Required method
fn to_tx_env(&self) -> TxEnv;
}Expand description
A helper trait to allow implementing IntoTxEnv for types that build transaction environment
by cloning data.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".