pub struct HttpInfo { /* private fields */ }
Expand description
Extra information about the transport when an HttpConnector is used.
Example
use hyper::Uri;
use hyper::client::{Client, connect::HttpInfo};
use hyper::rt::Future;
let client = Client::new();
let fut = client.get(Uri::from_static("http://example.local"))
.inspect(|resp| {
resp
.extensions()
.get::<HttpInfo>()
.map(|info| {
println!("remote addr = {}", info.remote_addr());
});
});
Note
If a different connector is used besides HttpConnector
,
this value will not exist in the extensions. Consult that specific
connector to see what “extra” information it might provide to responses.
Implementations
sourceimpl HttpInfo
impl HttpInfo
sourcepub fn remote_addr(&self) -> SocketAddr
pub fn remote_addr(&self) -> SocketAddr
Get the remote address of the transport used.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for HttpInfo
impl Send for HttpInfo
impl Sync for HttpInfo
impl Unpin for HttpInfo
impl UnwindSafe for HttpInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more