DropHandle
A handle that will abort a Tokio task when dropped.
The task will only be aborted when the last DropHandle is dropped, so you can clone it to keep the task alive.
This is useful for tasks that should be automatically cleaned up when they are no longer needed, without having to manually call abort().
Example
use DropHandle;
use ;
async