1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-20 12:45:41 +02:00

clippy warnings

This commit is contained in:
Nikolay Kim
2018-02-26 14:33:56 -08:00
parent 644f1a9518
commit 72aa2d9eae
33 changed files with 117 additions and 143 deletions

View File

@@ -106,16 +106,16 @@ impl HttpRequest<()> {
{
HttpRequest(
SharedHttpMessage::from_message(HttpMessage {
method: method,
uri: uri,
version: version,
headers: headers,
method,
uri,
version,
headers,
payload,
params: Params::new(),
query: Params::new(),
query_loaded: false,
cookies: None,
addr: None,
payload: payload,
extensions: Extensions::new(),
info: None,
}),
@@ -153,7 +153,7 @@ impl<S> HttpRequest<S> {
#[inline]
/// Construct new http request without state.
pub(crate) fn clone_without_state(&self) -> HttpRequest {
pub(crate) fn without_state(&self) -> HttpRequest {
HttpRequest(self.0.clone(), None, None)
}
@@ -483,7 +483,7 @@ impl<S> HttpRequest<S> {
/// # fn main() {}
/// ```
pub fn body(self) -> RequestBody {
RequestBody::from(self)
RequestBody::new(self.without_state())
}
/// Return stream to http payload processes as multipart.
@@ -553,7 +553,7 @@ impl<S> HttpRequest<S> {
/// # fn main() {}
/// ```
pub fn urlencoded(self) -> UrlEncoded {
UrlEncoded::from(self)
UrlEncoded::new(self.without_state())
}
/// Parse `application/json` encoded body.
@@ -677,9 +677,9 @@ pub struct UrlEncoded {
}
impl UrlEncoded {
pub fn from<S>(req: HttpRequest<S>) -> UrlEncoded {
pub fn new(req: HttpRequest) -> UrlEncoded {
UrlEncoded {
req: Some(req.clone_without_state()),
req: Some(req),
limit: 262_144,
fut: None,
}
@@ -762,10 +762,10 @@ pub struct RequestBody {
impl RequestBody {
/// Create `RequestBody` for request.
pub fn from<S>(req: HttpRequest<S>) -> RequestBody {
pub fn new(req: HttpRequest) -> RequestBody {
RequestBody {
limit: 262_144,
req: Some(req.clone_without_state()),
req: Some(req),
fut: None,
}
}