Type Alias tokio_util::sync::mpsc::InnerFuture

source ·
type InnerFuture<'a, T> = ReusableBoxFuture<'a, Result<OwnedPermit<T>, PollSendError<T>>>;

Aliased Type§

struct InnerFuture<'a, T> {
    boxed: Pin<Box<dyn Future<Output = Result<OwnedPermit<T>, PollSendError<T>>> + Send + 'a>>,
}

Fields§

§boxed: Pin<Box<dyn Future<Output = Result<OwnedPermit<T>, PollSendError<T>>> + Send + 'a>>