Struct hyper_proxy2::ProxyConnector
source · pub struct ProxyConnector<C> { /* private fields */ }
Expand description
A wrapper around Proxy
s with a connector.
Implementations§
source§impl<C> ProxyConnector<C>
impl<C> ProxyConnector<C>
sourcepub fn from_proxy(connector: C, proxy: Proxy) -> Result<Self, Error>
pub fn from_proxy(connector: C, proxy: Proxy) -> Result<Self, Error>
Create a proxy connector and attach a particular proxy
sourcepub fn from_proxy_unsecured(connector: C, proxy: Proxy) -> Self
pub fn from_proxy_unsecured(connector: C, proxy: Proxy) -> Self
Create a proxy connector and attach a particular proxy
sourcepub fn with_connector<CC>(self, connector: CC) -> ProxyConnector<CC>
pub fn with_connector<CC>(self, connector: CC) -> ProxyConnector<CC>
Change proxy connector
sourcepub fn set_tls(&mut self, tls: Option<NativeTlsConnector>)
pub fn set_tls(&mut self, tls: Option<NativeTlsConnector>)
Set or unset tls when tunneling
sourcepub fn extend_proxies<I: IntoIterator<Item = Proxy>>(&mut self, proxies: I)
pub fn extend_proxies<I: IntoIterator<Item = Proxy>>(&mut self, proxies: I)
Extend the list of proxies
sourcepub fn http_headers(&self, uri: &Uri) -> Option<&HeaderMap>
pub fn http_headers(&self, uri: &Uri) -> Option<&HeaderMap>
Get http headers for a matching uri
These headers must be appended to the hyper Request for the proxy to work properly. This is needed only for http requests.
Trait Implementations§
source§impl<C: Clone> Clone for ProxyConnector<C>
impl<C: Clone> Clone for ProxyConnector<C>
source§fn clone(&self) -> ProxyConnector<C>
fn clone(&self) -> ProxyConnector<C>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<C: Debug> Debug for ProxyConnector<C>
impl<C: Debug> Debug for ProxyConnector<C>
source§impl<C> Service<Uri> for ProxyConnector<C>
impl<C> Service<Uri> for ProxyConnector<C>
§type Future = Pin<Box<dyn Future<Output = Result<<ProxyConnector<C> as Service<Uri>>::Response, <ProxyConnector<C> as Service<Uri>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<ProxyConnector<C> as Service<Uri>>::Response, <ProxyConnector<C> as Service<Uri>>::Error>> + Send>>
The future response value.
Auto Trait Implementations§
impl<C> !RefUnwindSafe for ProxyConnector<C>
impl<C> Send for ProxyConnector<C>where
C: Send,
impl<C> Sync for ProxyConnector<C>where
C: Sync,
impl<C> Unpin for ProxyConnector<C>where
C: Unpin,
impl<C> !UnwindSafe for ProxyConnector<C>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
§fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
Yields a mutable reference to the service when it is ready to accept a request.
§fn ready_and(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready_and(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
👎Deprecated since 0.4.6: please use the
ServiceExt::ready
method insteadYields a mutable reference to the service when it is ready to accept a request.
§fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
Yields the service when it is ready to accept a request.
§fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
Consume this
Service
, calling with the providing request once it is ready.§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the
poll_ready
method. Read more§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
Maps this service’s response value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read more§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
Maps this service’s error value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read more§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Maps this service’s result type (
Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails. Read more§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Composes a function in front of the service. Read more
§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
Composes an asynchronous function after this service. Read more
§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
Composes a function that transforms futures produced by the service. Read more