mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Clippy fixes
This commit is contained in:
parent
4d4ab811bd
commit
7d260fea2f
6 changed files with 6 additions and 11 deletions
|
@ -1,9 +1,4 @@
|
||||||
#![deny(
|
#![deny(warnings, unreachable_pub, missing_debug_implementations)]
|
||||||
rust_2018_idioms,
|
|
||||||
warnings,
|
|
||||||
unreachable_pub,
|
|
||||||
missing_debug_implementations
|
|
||||||
)]
|
|
||||||
#![warn(nonstandard_style, future_incompatible)]
|
#![warn(nonstandard_style, future_incompatible)]
|
||||||
|
|
||||||
//! Resource path matching library.
|
//! Resource path matching library.
|
||||||
|
|
|
@ -63,5 +63,5 @@ fn from_hex(v: u8) -> Option<u8> {
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn restore_ch(d1: u8, d2: u8) -> Option<u8> {
|
fn restore_ch(d1: u8, d2: u8) -> Option<u8> {
|
||||||
from_hex(d1).and_then(|d1| from_hex(d2).map(move |d2| d1 << 4 | d2))
|
from_hex(d1).and_then(|d1| from_hex(d2).map(move |d2| (d1 << 4) | d2))
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ mod select;
|
||||||
pub use self::either::Either;
|
pub use self::either::Either;
|
||||||
pub use self::join::{join, join_all};
|
pub use self::join::{join, join_all};
|
||||||
pub use self::lazy::{lazy, Lazy};
|
pub use self::lazy::{lazy, Lazy};
|
||||||
pub use self::on_drop::{OnDropFn, OnDropFutureExt};
|
pub use self::on_drop::{OnDropFn, OnDropFuture, OnDropFutureExt};
|
||||||
pub use self::ready::Ready;
|
pub use self::ready::Ready;
|
||||||
pub use self::select::select;
|
pub use self::select::select;
|
||||||
|
|
||||||
|
|
|
@ -290,7 +290,7 @@ where
|
||||||
let mut inflight = self.inflight.borrow_mut();
|
let mut inflight = self.inflight.borrow_mut();
|
||||||
inflight.remove(&ioref);
|
inflight.remove(&ioref);
|
||||||
|
|
||||||
if inflight.len() == 0 {
|
if inflight.is_empty() {
|
||||||
if let Some(tx) = self.tx.take() {
|
if let Some(tx) = self.tx.take() {
|
||||||
let _ = tx.send(());
|
let _ = tx.send(());
|
||||||
}
|
}
|
||||||
|
|
|
@ -286,7 +286,7 @@ where
|
||||||
let mut inflight = self.inflight.borrow_mut();
|
let mut inflight = self.inflight.borrow_mut();
|
||||||
inflight.remove(&ioref);
|
inflight.remove(&ioref);
|
||||||
|
|
||||||
if inflight.len() == 0 {
|
if inflight.is_empty() {
|
||||||
if let Some(tx) = self.tx.take() {
|
if let Some(tx) = self.tx.take() {
|
||||||
let _ = tx.send(());
|
let _ = tx.send(());
|
||||||
}
|
}
|
||||||
|
|
|
@ -387,7 +387,7 @@ where
|
||||||
let mut inflight = self.inflight.borrow_mut();
|
let mut inflight = self.inflight.borrow_mut();
|
||||||
inflight.remove(&ioref);
|
inflight.remove(&ioref);
|
||||||
|
|
||||||
if inflight.len() == 0 {
|
if inflight.is_empty() {
|
||||||
if let Some(tx) = self.tx.take() {
|
if let Some(tx) = self.tx.take() {
|
||||||
let _ = tx.send(());
|
let _ = tx.send(());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue