Skip to content

Commit a90f57e

Browse files
committed
Apply clippy fixes
1 parent 317c7ea commit a90f57e

29 files changed

+33
-33
lines changed

src/fs/file.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ impl LockGuard<State> {
696696
// file. This call should not block because it doesn't touch the actual file on disk.
697697
if pos == SeekFrom::Current(0) {
698698
// Poll the internal file cursor.
699-
let internal = (&*self.file).seek(SeekFrom::Current(0))?;
699+
let internal = (&*self.file).stream_position()?;
700700

701701
// Factor in the difference caused by caching.
702702
let actual = match self.mode {
@@ -714,7 +714,7 @@ impl LockGuard<State> {
714714
if let Some(new) = (start as i64).checked_add(diff) {
715715
if 0 <= new && new <= self.cache.len() as i64 {
716716
// Poll the internal file cursor.
717-
let internal = (&*self.file).seek(SeekFrom::Current(0))?;
717+
let internal = (&*self.file).stream_position()?;
718718

719719
// Adjust the current position in the read cache.
720720
self.mode = Mode::Reading(new as usize);

src/future/poll_fn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ where
4444
type Output = T;
4545

4646
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T> {
47-
(&mut self.f)(cx)
47+
(self.f)(cx)
4848
}
4949
}

src/io/buf_read/lines.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl<R: BufRead> Stream for Lines<R> {
5050
this.buf.pop();
5151
}
5252
}
53-
Poll::Ready(Some(Ok(mem::replace(this.buf, String::new()))))
53+
Poll::Ready(Some(Ok(mem::take(this.buf))))
5454
}
5555
}
5656

@@ -62,7 +62,7 @@ pub fn read_line_internal<R: BufRead + ?Sized>(
6262
read: &mut usize,
6363
) -> Poll<io::Result<usize>> {
6464
let ret = futures_core::ready!(read_until_internal(reader, cx, b'\n', bytes, read));
65-
if str::from_utf8(&bytes).is_err() {
65+
if str::from_utf8(bytes).is_err() {
6666
Poll::Ready(ret.and_then(|_| {
6767
Err(io::Error::new(
6868
io::ErrorKind::InvalidData,

src/io/buf_read/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ pub trait BufReadExt: BufRead {
136136
{
137137
ReadLineFuture {
138138
reader: self,
139-
bytes: unsafe { mem::replace(buf.as_mut_vec(), Vec::new()) },
139+
bytes: unsafe { std::mem::take(buf.as_mut_vec()) },
140140
buf,
141141
read: 0,
142142
}

src/io/buf_read/read_line.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ impl<T: BufRead + Unpin + ?Sized> Future for ReadLineFuture<'_, T> {
2929
let reader = Pin::new(reader);
3030

3131
let ret = futures_core::ready!(read_until_internal(reader, cx, b'\n', bytes, read));
32-
if str::from_utf8(&bytes).is_err() {
32+
if str::from_utf8(bytes).is_err() {
3333
Poll::Ready(ret.and_then(|_| {
3434
Err(io::Error::new(
3535
io::ErrorKind::InvalidData,

src/io/buf_read/split.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ impl<R: BufRead> Stream for Split<R> {
4646
if this.buf[this.buf.len() - 1] == *this.delim {
4747
this.buf.pop();
4848
}
49-
Poll::Ready(Some(Ok(mem::replace(this.buf, vec![]))))
49+
Poll::Ready(Some(Ok(mem::take(this.buf))))
5050
}
5151
}

src/io/read/chain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ impl<T: BufRead, U: BufRead> BufRead for Chain<T, U> {
144144
let this = self.project();
145145
if !*this.done_first {
146146
match futures_core::ready!(this.first.poll_fill_buf(cx)) {
147-
Ok(buf) if buf.is_empty() => {
147+
Ok([]) => {
148148
*this.done_first = true;
149149
}
150150
Ok(buf) => return Poll::Ready(Ok(buf)),

src/io/read/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ pub trait ReadExt: Read {
168168
let start_len = buf.len();
169169
ReadToStringFuture {
170170
reader: self,
171-
bytes: unsafe { mem::replace(buf.as_mut_vec(), Vec::new()) },
171+
bytes: unsafe { mem::take(buf.as_mut_vec()) },
172172
buf,
173173
start_len,
174174
}

src/io/read/read_exact.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ impl<T: Read + Unpin + ?Sized> Future for ReadExactFuture<'_, T> {
2020

2121
while !buf.is_empty() {
2222
let n = futures_core::ready!(Pin::new(&mut *reader).poll_read(cx, buf))?;
23-
let (_, rest) = mem::replace(buf, &mut []).split_at_mut(n);
23+
let (_, rest) = mem::take(buf).split_at_mut(n);
2424
*buf = rest;
2525

2626
if n == 0 {

src/io/read/read_to_string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ impl<T: Read + Unpin + ?Sized> Future for ReadToStringFuture<'_, T> {
2929
let reader = Pin::new(reader);
3030

3131
let ret = futures_core::ready!(read_to_end_internal(reader, cx, bytes, *start_len));
32-
if str::from_utf8(&bytes).is_err() {
32+
if str::from_utf8(bytes).is_err() {
3333
Poll::Ready(ret.and_then(|_| {
3434
Err(io::Error::new(
3535
io::ErrorKind::InvalidData,

src/io/write/write_all.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ impl<T: Write + Unpin + ?Sized> Future for WriteAllFuture<'_, T> {
2020

2121
while !buf.is_empty() {
2222
let n = futures_core::ready!(Pin::new(&mut **writer).poll_write(cx, buf))?;
23-
let (_, rest) = mem::replace(buf, &[]).split_at(n);
23+
let (_, rest) = mem::take(buf).split_at(n);
2424
*buf = rest;
2525

2626
if n == 0 {

src/net/addr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,6 @@ impl ToSocketAddrs for String {
280280
impl Future<Output = Self::Iter>,
281281
ToSocketAddrsFuture<Self::Iter>
282282
) {
283-
(&**self).to_socket_addrs()
283+
(**self).to_socket_addrs()
284284
}
285285
}

src/path/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ impl Path {
261261
/// assert_eq!(ancestors.next(), None);
262262
/// ```
263263
pub fn ancestors(&self) -> Ancestors<'_> {
264-
Ancestors { next: Some(&self) }
264+
Ancestors { next: Some(self) }
265265
}
266266

267267
/// Returns the final component of the `Path`, if there is one.
@@ -1011,7 +1011,7 @@ impl_cmp_os_str!(&'a Path, OsString);
10111011

10121012
impl<'a> From<&'a std::path::Path> for &'a Path {
10131013
fn from(path: &'a std::path::Path) -> &'a Path {
1014-
&Path::new(path.as_os_str())
1014+
Path::new(path.as_os_str())
10151015
}
10161016
}
10171017

src/stream/from_fn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ where
6262
type Item = T;
6363

6464
fn poll_next(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> {
65-
let item = (&mut self.f)();
65+
let item = (self.f)();
6666
Poll::Ready(item)
6767
}
6868
}

src/stream/repeat_with.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ where
7878
type Item = T;
7979

8080
fn poll_next(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> {
81-
let item = (&mut self.f)();
81+
let item = (self.f)();
8282
Poll::Ready(Some(item))
8383
}
8484
}

src/stream/stream/all.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ where
3737

3838
match next {
3939
Some(v) => {
40-
let result = (&mut self.f)(v);
40+
let result = (self.f)(v);
4141

4242
if result {
4343
// don't forget to wake this task again to pull the next item from stream

src/stream/stream/any.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ where
3737

3838
match next {
3939
Some(v) => {
40-
let result = (&mut self.f)(v);
40+
let result = (self.f)(v);
4141

4242
if result {
4343
Poll::Ready(true)

src/stream/stream/find.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ where
3030
let item = futures_core::ready!(Pin::new(&mut *self.stream).poll_next(cx));
3131

3232
match item {
33-
Some(v) if (&mut self.p)(&v) => Poll::Ready(Some(v)),
33+
Some(v) if (self.p)(&v) => Poll::Ready(Some(v)),
3434
Some(_) => {
3535
cx.waker().wake_by_ref();
3636
Poll::Pending

src/stream/stream/find_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ where
3030
let item = futures_core::ready!(Pin::new(&mut *self.stream).poll_next(cx));
3131

3232
match item {
33-
Some(v) => match (&mut self.f)(v) {
33+
Some(v) => match (self.f)(v) {
3434
Some(v) => Poll::Ready(Some(v)),
3535
None => {
3636
cx.waker().wake_by_ref();

src/stream/stream/position.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ where
3636

3737
match next {
3838
Some(v) => {
39-
if (&mut self.predicate)(v) {
39+
if (self.predicate)(v) {
4040
Poll::Ready(Some(self.index))
4141
} else {
4242
cx.waker().wake_by_ref();

src/stream/stream/try_fold.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ where
3838
match next {
3939
Some(v) => {
4040
let old = self.acc.take().unwrap();
41-
let new = (&mut self.f)(old, v);
41+
let new = (self.f)(old, v);
4242

4343
match new {
4444
Ok(o) => self.acc = Some(o),

src/stream/stream/try_for_each.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ where
3333
match item {
3434
None => return Poll::Ready(Ok(())),
3535
Some(v) => {
36-
let res = (&mut self.f)(v);
36+
let res = (self.f)(v);
3737
if let Err(e) = res {
3838
return Poll::Ready(Err(e));
3939
}

src/task/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl Builder {
154154

155155
thread_local! {
156156
/// Tracks the number of nested block_on calls.
157-
static NUM_NESTED_BLOCKING: Cell<usize> = Cell::new(0);
157+
static NUM_NESTED_BLOCKING: Cell<usize> = const { Cell::new(0) };
158158
}
159159

160160
// Run the future as a task.

src/task/task_id.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl TaskId {
2222
static COUNTER: AtomicUsize = AtomicUsize::new(1);
2323

2424
let id = COUNTER.fetch_add(1, Ordering::Relaxed);
25-
if id > usize::max_value() / 2 {
25+
if id > usize::MAX / 2 {
2626
std::process::abort();
2727
}
2828
TaskId(id)

src/task/task_local.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl<T: Send + 'static> LocalKey<T> {
120120
static COUNTER: AtomicU32 = AtomicU32::new(1);
121121

122122
let counter = COUNTER.fetch_add(1, Ordering::Relaxed);
123-
if counter > u32::max_value() / 2 {
123+
if counter > u32::MAX / 2 {
124124
std::process::abort();
125125
}
126126

src/task/task_locals_wrapper.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::utils::abort_on_panic;
66

77
thread_local! {
88
/// A pointer to the currently running task.
9-
static CURRENT: Cell<*const TaskLocalsWrapper> = Cell::new(ptr::null_mut());
9+
static CURRENT: Cell<*const TaskLocalsWrapper> = const { Cell::new(ptr::null_mut()) };
1010
}
1111

1212
/// A wrapper to store task local data.

src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub(crate) fn timer_after(dur: std::time::Duration) -> timer::Timer {
7171
Timer::after(dur)
7272
}
7373

74-
#[cfg(any(all(target_arch = "wasm32", feature = "default"),))]
74+
#[cfg(all(target_arch = "wasm32", feature = "default"))]
7575
mod timer {
7676
use std::pin::Pin;
7777
use std::task::Poll;

tests/tcp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn smoke_std_stream_to_async_listener() -> io::Result<()> {
6060
let listener = TcpListener::bind("127.0.0.1:0").await?;
6161
let addr = listener.local_addr()?;
6262

63-
let mut std_stream = std::net::TcpStream::connect(&addr)?;
63+
let mut std_stream = std::net::TcpStream::connect(addr)?;
6464
std_stream.write_all(THE_WINTERS_TALE)?;
6565

6666
let mut buf = vec![0; 1024];

tests/uds.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ async fn ping_pong_server(listener: UnixListener, iterations: u32) -> std::io::R
9696
let mut s = s?;
9797
let n = s.read(&mut buf[..]).await?;
9898
assert_eq!(&buf[..n], PING);
99-
s.write_all(&PONG).await?;
99+
s.write_all(PONG).await?;
100100
}
101101
}
102102
Ok(())
@@ -106,7 +106,7 @@ async fn ping_pong_client(socket: &std::path::PathBuf, iterations: u32) -> std::
106106
let mut buf = [0; 1024];
107107
for _ix in 0..iterations {
108108
let mut socket = UnixStream::connect(&socket).await?;
109-
socket.write_all(&PING).await?;
109+
socket.write_all(PING).await?;
110110
let n = async_std::io::timeout(TEST_TIMEOUT, socket.read(&mut buf[..])).await?;
111111
assert_eq!(&buf[..n], PONG);
112112
}

0 commit comments

Comments
 (0)