pub struct ProxyConnectorService<S> { /* private fields */ }Trait Implementations§
Source§impl<S: Clone> Clone for ProxyConnectorService<S>
impl<S: Clone> Clone for ProxyConnectorService<S>
Source§fn clone(&self) -> ProxyConnectorService<S>
fn clone(&self) -> ProxyConnectorService<S>
Returns a duplicate 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<S> Service<Uri> for ProxyConnectorService<S>
impl<S> Service<Uri> for ProxyConnectorService<S>
Source§type Response = ProxyConnection<<S as Service<Uri>>::Response>
type Response = ProxyConnection<<S as Service<Uri>>::Response>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<ProxyConnectorService<S> as Service<Uri>>::Response, <ProxyConnectorService<S> as Service<Uri>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<ProxyConnectorService<S> as Service<Uri>>::Response, <ProxyConnectorService<S> as Service<Uri>>::Error>> + Send>>
The future response value.
Auto Trait Implementations§
impl<S> !Freeze for ProxyConnectorService<S>
impl<S> RefUnwindSafe for ProxyConnectorService<S>where
S: RefUnwindSafe,
impl<S> Send for ProxyConnectorService<S>where
S: Send,
impl<S> Sync for ProxyConnectorService<S>where
S: Sync,
impl<S> Unpin for ProxyConnectorService<S>where
S: Unpin,
impl<S> UnwindSafe for ProxyConnectorService<S>where
S: UnwindSafe,
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