mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 08:31:09 +00:00
Fix clippy warning (#755)
This commit is contained in:
parent
309c480782
commit
a655bdac52
5 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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()),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"))),
|
||||
|
|
Loading…
Reference in a new issue