wtx 0.28.0

A collection of different transport implementations and related tools focused primarily on web technologies.
1
2
3
4
5
6
7
8
9
10
use crate::http::client_pool::ConnParams;
use core::marker::PhantomData;

/// Resource manager for [`ClientPool`].
#[derive(Debug)]
pub struct ClientPoolRM<F, S> {
  pub(crate) _cp: ConnParams,
  pub(crate) _fun: F,
  pub(crate) _phantom: PhantomData<S>,
}