Crate async_drop_guard

Source

Structs§

AsyncDropArc
AsyncDropGuard
AsyncDropGuard allows async dropping of the contained value with a safety check.
SyncDrop
SyncDrop wraps an AsyncDropGuard and calls AsyncDropGuard::async_drop on it in its synchronous Drop destructor.

Traits§

AsyncDrop
Implement this trait to define an async drop behavior for your type. See [AsyncDropGuard] for more details.