1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 08:41:55 +00:00

Add remaining getter methods from private head field

This commit is contained in:
Sven-Hendrik Haase 2019-09-25 08:50:45 +02:00
parent d9af8f66ba
commit 23f04c4f38

View file

@ -96,7 +96,7 @@ impl ClientRequest {
self
}
/// Get HTTP URI of request
/// Get HTTP URI of request.
pub fn get_uri(&self) -> &Uri {
&self.head.uri
}
@ -132,6 +132,16 @@ impl ClientRequest {
self
}
/// Get HTTP version of this request.
pub fn get_version(&self) -> &Version {
&self.head.version
}
/// Get peer address of this request.
pub fn get_peer_addr(&self) -> &Option<net::SocketAddr> {
&self.head.peer_addr
}
#[inline]
/// Returns request's headers.
pub fn headers(&self) -> &HeaderMap {