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.
pub trait ToTxEnv<TxEnv> {
// Required method
fn to_tx_env(&self) -> TxEnv;
}A helper trait to allow implementing IntoTxEnv for types that build transaction environment
by cloning data.