macro_rules! ret {
($ex:expr) => { ... };
}Expand description
Bridges between async and sync execution contexts
Behavior depends on compilation:
- With
asyncfeature: Returns a boxed future - Without
asyncfeature: Blocks on the global runtime
macro_rules! ret {
($ex:expr) => { ... };
}Bridges between async and sync execution contexts
Behavior depends on compilation:
async feature: Returns a boxed futureasync feature: Blocks on the global runtime