1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// SPDX-License-Identifier: MIT OR Apache-2.0
/// Acquire a permit and execute one or more database queries within a single transaction.
///
/// This macro takes a store as the first argument and a code block as the second.
///
/// Internally it acquires a permit, executes the given code block and then commits the transaction
/// before returning with the result of the code block.
///
/// ## Example
///
/// ```rust,ignore
/// tx!(store, {
/// store.set_cursor(&new_cursor).await?;
/// });
/// ```