mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Clippy warnings (#305)
This commit is contained in:
parent
68e158d877
commit
661c5ea1fa
62 changed files with 103 additions and 110 deletions
|
@ -4179,7 +4179,11 @@ mod tests {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[allow(clippy::len_zero)]
|
||||
#[allow(
|
||||
clippy::len_zero,
|
||||
clippy::nonminimal_bool,
|
||||
clippy::unnecessary_fallible_conversions
|
||||
)]
|
||||
fn bytes() {
|
||||
let mut b = Bytes::from(LONG.to_vec());
|
||||
b.clear();
|
||||
|
@ -4226,6 +4230,7 @@ mod tests {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[allow(clippy::unnecessary_fallible_conversions)]
|
||||
fn bytes_vec() {
|
||||
let bv = BytesVec::copy_from_slice(LONG);
|
||||
// SharedVec size is 32
|
||||
|
|
|
@ -371,7 +371,7 @@ mod utf8 {
|
|||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use std::borrow::{Borrow, Cow, ToOwned};
|
||||
use std::borrow::{Borrow, Cow};
|
||||
use std::collections::hash_map::DefaultHasher;
|
||||
use std::hash::{Hash, Hasher};
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#![deny(warnings, rust_2018_idioms)]
|
||||
#![allow(clippy::unnecessary_mut_passed)]
|
||||
|
||||
use ntex_bytes::{Buf, Bytes, BytesMut};
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#![allow(clippy::op_ref, clippy::let_underscore_future)]
|
||||
use std::{borrow::Borrow, borrow::BorrowMut, task::Poll};
|
||||
|
||||
use ntex_bytes::{Buf, BufMut, Bytes, BytesMut, BytesVec, Pool, PoolId, PoolRef};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue