mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
Add remaining getter methods from private head field
This commit is contained in:
parent
d9af8f66ba
commit
23f04c4f38
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user