Trait Http2ClientConnExec
trait Http2ClientConnExec<B, T>: sealed_client::Sealed<(B, T)>
where
B: http_body::Body,
<B as >::Error: Into<Box<dyn Error + Send + Sync>>,
T: Read + Write + Unpin
An executor to spawn http2 futures for the client.
This trait is implemented for any type that implements Executor
trait for any future.
This trait is sealed and cannot be implemented for types outside this crate.
Implementors
impl<E, B, T> Http2ClientConnExec for E