1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-08 20:58:26 +00:00

handle error during request creation

This commit is contained in:
Nikolay Kim 2018-07-30 15:04:52 -07:00
parent 7bc0ace52d
commit 2072c933ba

View file

@ -316,8 +316,7 @@ impl ClientRequestBuilder {
/// Set HTTP method of this request. /// Set HTTP method of this request.
#[inline] #[inline]
pub fn get_method(&mut self) -> &Method { pub fn get_method(&mut self) -> &Method {
let parts = let parts = self.request.as_ref().expect("cannot reuse request builder");
parts(&mut self.request, &self.err).expect("cannot reuse request builder");
&parts.method &parts.method
} }