pub trait CancelTryFuturewhere
    Self: TryFuture + Sized,
    Canceled: Into<Self::Error>,
{ fn try_or_cancel<H: RcLike<CancelHandle>>(
        self,
        cancel_handle: H
    ) -> TryCancelable<Self> { ... } }

Provided Methods

Implementors