macro_rules! setup_and_transaction {
($backend:expr,
setup: |$setup_conn:ident| $setup_body:expr,
transaction: |$tx_conn:ident| $tx_body:expr) => { ... };
}
Expand description
A macro to simplify both setup and transaction phases
This macro provides a cleaner API for both setup and transaction phases without requiring manual boxing.