pub struct HyperUnixConnector {
    pub backend: Backend,
}Available on crate features 
unix and connector only.Expand description
A hyper-util connector for Unix sockets.
Fields§
§backend: BackendThe Backend to use when performing connections.
Trait Implementations§
Source§impl Clone for HyperUnixConnector
 
impl Clone for HyperUnixConnector
Source§fn clone(&self) -> HyperUnixConnector
 
fn clone(&self) -> HyperUnixConnector
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 Debug for HyperUnixConnector
 
impl Debug for HyperUnixConnector
Source§impl PartialEq for HyperUnixConnector
 
impl PartialEq for HyperUnixConnector
Source§impl Service<Uri> for HyperUnixConnector
 
impl Service<Uri> for HyperUnixConnector
Source§type Response = HyperUnixStream
 
type Response = HyperUnixStream
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<HyperUnixConnector as Service<Uri>>::Response, <HyperUnixConnector as Service<Uri>>::Error>> + Send>>
 
type Future = Pin<Box<dyn Future<Output = Result<<HyperUnixConnector as Service<Uri>>::Response, <HyperUnixConnector as Service<Uri>>::Error>> + Send>>
The future response value.
impl Copy for HyperUnixConnector
impl Eq for HyperUnixConnector
impl StructuralPartialEq for HyperUnixConnector
impl Unpin for HyperUnixConnector
Auto Trait Implementations§
impl Freeze for HyperUnixConnector
impl RefUnwindSafe for HyperUnixConnector
impl Send for HyperUnixConnector
impl Sync for HyperUnixConnector
impl UnwindSafe for HyperUnixConnector
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