//! Abort lease heartbeats (and similar renew tasks) on drop.
use JoinHandle;
/// Aborts the inner [`JoinHandle`] when dropped.
///
/// Ensures orphaned lease heartbeats stop when a handler panics or returns early,
/// so the lease can expire and the reaper can reclaim the job.
pub >>);