Glommio clippy

This commit is contained in:
Nikolay Kim 2024-04-07 22:47:58 +05:00
parent a858394855
commit ccafe7a8be
3 changed files with 10 additions and 8 deletions

View file

@ -30,4 +30,4 @@ simdutf8 = { version = "0.1.4", optional = true }
serde_test = "1"
serde_json = "1"
ntex = { version = "1", features = ["tokio"] }
ntex-bytes = { version = "*", features = ["mpool"] }
ntex-bytes = { path = ".", features = ["mpool"] }

View file

@ -203,9 +203,10 @@ impl Future for WriteTask {
Poll::Ready(Ok(())) => {
let io = this.io.clone();
let fut = Box::pin(async move {
io.0.borrow()
.shutdown(std::net::Shutdown::Write)
.await
let fut =
io.0.borrow()
.shutdown(std::net::Shutdown::Write);
fut.await
});
*st = Shutdown::Close(fut);
continue;
@ -511,9 +512,10 @@ impl Future for UnixWriteTask {
Poll::Ready(Ok(())) => {
let io = this.io.clone();
let fut = Box::pin(async move {
io.0.borrow()
.shutdown(std::net::Shutdown::Write)
.await
let fut =
io.0.borrow()
.shutdown(std::net::Shutdown::Write);
fut.await
});
*st = Shutdown::Close(fut);
continue;

View file

@ -1,7 +1,7 @@
use std::{cell::RefCell, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};
thread_local! {
static SRUN: RefCell<bool> = RefCell::new(false);
static SRUN: RefCell<bool> = const { RefCell::new(false) };
static SHANDLERS: Rc<RefCell<Vec<oneshot::Sender<Signal>>>> = Default::default();
}