Skip to main content

txn

Macro txn 

Source
macro_rules! txn {
    ($($body:tt)*) => { ... };
}
Expand description

Macro for cleaner transaction syntax

§Example

use ferro_rs::txn;

txn! {
    User::insert_one(user_data).await?;
    Profile::insert_one(profile_data).await?;
    Ok(())
}