We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e32fd0 commit 414faddCopy full SHA for 414fadd
src/io/read/mod.rs
@@ -10,8 +10,8 @@ use read_to_end::{read_to_end_internal, ReadToEndFuture};
10
use read_to_string::ReadToStringFuture;
11
use read_vectored::ReadVectoredFuture;
12
13
-use std::mem;
14
use cfg_if::cfg_if;
+use std::mem;
15
16
use crate::io::IoSliceMut;
17
use crate::utils::extension_trait;
src/stream/stream/mod.rs
@@ -503,7 +503,7 @@ extension_trait! {
503
fn min_by<F>(
504
self,
505
compare: F,
506
- )-> impl Future<Output = Option<Self::Item>> [MinByFuture<Self, F, Self::Item>]
+ ) -> impl Future<Output = Option<Self::Item>> [MinByFuture<Self, F, Self::Item>]
507
where
508
Self: Sized,
509
F: FnMut(&Self::Item, &Self::Item) -> Ordering,
0 commit comments