Macro transaction

Source
macro_rules! transaction {
    ($backend:expr, |$conn:ident| $body:expr) => { ... };
}
Expand description

A macro to simplify running a transaction

This macro provides a cleaner API for the transaction phase without requiring manual boxing.