Skip to main content

defer

Macro defer 

Source
macro_rules! defer {
    ($body:block) => { ... };
    ($body:expr_2021) => { ... };
}
Expand description

Runs an action when the surrounding scope exits.

A local drop guard executes the action on normal return, early return, or unwinding. Multiple guards in one scope run in reverse declaration order.