macro_rules! defer {
($($data: tt)*) => { ... };
}
Expand description
Macro to defer execution of a block of code.
This macro allows you to specify a block of code that will be executed when the
current scope is exited.
It is similar to the defer
function but provides a more concise syntax.