Glommio clippy (#341)

This commit is contained in:
Nikolay Kim 2024-04-08 11:55:49 +05:00 committed by GitHub
parent a858394855
commit ec8eb23707
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 28 additions and 50 deletions

View file

@ -2,7 +2,7 @@ use std::borrow::{Borrow, BorrowMut};
use std::ops::{Deref, DerefMut, RangeBounds};
use std::sync::atomic::Ordering::{Acquire, Relaxed, Release};
use std::sync::atomic::{self, AtomicUsize};
use std::{cmp, fmt, hash, mem, ptr, ptr::NonNull, slice, usize};
use std::{cmp, fmt, hash, mem, ptr, ptr::NonNull, slice};
use crate::pool::{PoolId, PoolRef};
use crate::{buf::IntoIter, buf::UninitSlice, debug, Buf, BufMut};