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 57670dd commit a3b7421Copy full SHA for a3b7421
src/stream/stream/min.rs
@@ -1,5 +1,5 @@
1
+use std::cmp::{Ord, Ordering};
2
use std::marker::PhantomData;
-use std::cmp::{Ordering, Ord};
3
use std::pin::Pin;
4
5
use pin_project_lite::pin_project;
src/stream/stream/mod.rs
@@ -774,11 +774,10 @@ extension_trait! {
774
775
# Examples
776
777
- ```
+ ```ignore
778
# fn main() { async_std::task::block_on(async {
779
#
780
use std::collections::VecDeque;
781
-
782
use async_std::prelude::*;
783
784
let s: VecDeque<usize> = vec![1, 2, 3].into_iter().collect();
0 commit comments