pub trait UnixClientExt {
    fn unix() -> Client<UnixConnector, Body> { ... }
}
Expand description

Extention trait for constructing a hyper HTTP client over a Unix domain socket.

Provided Methods§

Construct a client which speaks HTTP over a Unix domain socket

Example
use hyper::Client;
use hyperlocal_with_windows::UnixClientExt;

let client = Client::unix();

Implementations on Foreign Types§

Implementors§