pub struct ProxyConfig<C, S>where
C: NetworkConnector + Send + Sync + 'static,
C::Stream: NetworkStream + Clone + Send,
S: SslClient<C::Stream> + Send + Sync + 'static,{ /* private fields */ }
Expand description
Proxy server configuration with a custom connector and TLS wrapper.
Implementations§
Source§impl<C, S> ProxyConfig<C, S>
impl<C, S> ProxyConfig<C, S>
Sourcepub fn new<H: Into<Cow<'static, str>>>(
scheme: &str,
host: H,
port: u16,
connector: C,
ssl: S,
) -> ProxyConfig<C, S>
pub fn new<H: Into<Cow<'static, str>>>( scheme: &str, host: H, port: u16, connector: C, ssl: S, ) -> ProxyConfig<C, S>
Create a new ProxyConfig
.
Sourcepub fn set_pool_config(&mut self, pool_config: Option<Config>)
pub fn set_pool_config(&mut self, pool_config: Option<Config>)
Change the pool::Config
for the proxy.
Passing None
disables the Pool
.
The default is enabled, with the default pool::Config
.
Auto Trait Implementations§
impl<C, S> Freeze for ProxyConfig<C, S>
impl<C, S> RefUnwindSafe for ProxyConfig<C, S>
impl<C, S> Send for ProxyConfig<C, S>
impl<C, S> Sync for ProxyConfig<C, S>
impl<C, S> Unpin for ProxyConfig<C, S>
impl<C, S> UnwindSafe for ProxyConfig<C, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more