pub trait BackgroundReadyExecutor<T, Request>: TypedExecutor<BackgroundReady<T, Request>>{ }Expand description
This trait allows you to use either Tokio’s threaded runtime’s executor or
the current_thread runtime’s executor depending on if T is Send or
!Send.