pub trait CancelFuturewhere
    Self: Future + Sized,
{ fn or_cancel<H: RcLike<CancelHandle>>(
        self,
        cancel_handle: H
    ) -> Cancelable<Self> { ... } }

Provided Methods

Implementors