Structs§
- Async
Drop Arc - Async
Drop Guard - AsyncDropGuard allows async dropping of the contained value with a safety check.
- Sync
Drop - SyncDrop wraps an AsyncDropGuard and calls
AsyncDropGuard::async_drop
on it in its synchronous Drop destructor.
Traits§
- Async
Drop - Implement this trait to define an async drop behavior for your type. See [AsyncDropGuard] for more details.