1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 18:29:34 +00:00

Fix clippy warning (#755)

This commit is contained in:
nasa 2019-04-05 18:34:24 +09:00 committed by Douman
parent 309c480782
commit a655bdac52
5 changed files with 6 additions and 6 deletions

View file

@ -359,7 +359,7 @@ where
}
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
self.stream.poll().map_err(|e| e.into())
self.stream.poll().map_err(std::convert::Into::into)
}
}

View file

@ -68,8 +68,8 @@ impl Key {
encryption_key.copy_from_slice(&both_keys[SIGNED_KEY_LEN..]);
Key {
signing_key: signing_key,
encryption_key: encryption_key,
signing_key,
encryption_key,
}
}

View file

@ -37,7 +37,7 @@ impl<'a> PrivateJar<'a> {
let mut key_array = [0u8; KEY_LEN];
key_array.copy_from_slice(key.encryption());
PrivateJar {
parent: parent,
parent,
key: key_array,
}
}

View file

@ -31,7 +31,7 @@ impl<'a> SignedJar<'a> {
#[doc(hidden)]
pub fn new(parent: &'a mut CookieJar, key: &Key) -> SignedJar<'a> {
SignedJar {
parent: parent,
parent,
key: SigningKey::new(HMAC_DIGEST, key.signing()),
}
}

View file

@ -414,7 +414,7 @@ impl ClientRequest {
}
// user agent
if !self.head.headers.contains_key(&header::USER_AGENT) {
if !self.head.headers.contains_key(header::USER_AGENT) {
self.head.headers.insert(
header::USER_AGENT,
HeaderValue::from_static(concat!("awc/", env!("CARGO_PKG_VERSION"))),