feat(client): add Request.set_uri(RequestUri) method (#803)
This commit is contained in:
@@ -38,6 +38,14 @@ impl<'a> Request<'a> {
|
|||||||
/// Get a mutable reference to the Request headers.
|
/// Get a mutable reference to the Request headers.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn headers_mut(&mut self) -> &mut Headers { &mut self.head.headers }
|
pub fn headers_mut(&mut self) -> &mut Headers { &mut self.head.headers }
|
||||||
|
|
||||||
|
/// Set the `RequestUri` of this request.
|
||||||
|
#[inline]
|
||||||
|
pub fn set_uri(&mut self, uri: RequestUri) { self.head.subject.1 = uri; }
|
||||||
|
|
||||||
|
/// Set the `HttpVersion` of this request.
|
||||||
|
#[inline]
|
||||||
|
pub fn set_version(&mut self, version: HttpVersion) { self.head.version = version; }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new(head: &mut RequestHead) -> Request {
|
pub fn new(head: &mut RequestHead) -> Request {
|
||||||
|
|||||||
Reference in New Issue
Block a user