File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ mod zip;
39
39
40
40
pub use fuse:: Fuse ;
41
41
pub use scan:: Scan ;
42
+ pub use skip_while:: SkipWhile ;
42
43
pub use take:: Take ;
43
44
pub use zip:: Zip ;
44
45
@@ -52,7 +53,6 @@ use fold::FoldFuture;
52
53
use min_by:: MinByFuture ;
53
54
use next:: NextFuture ;
54
55
use nth:: NthFuture ;
55
- use skip_while:: SkipWhile ;
56
56
57
57
use std:: cmp:: Ordering ;
58
58
use std:: marker:: PhantomData ;
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ use std::pin::Pin;
4
4
use crate :: stream:: Stream ;
5
5
use crate :: task:: { Context , Poll } ;
6
6
7
- # [ doc ( hidden ) ]
8
- #[ allow ( missing_debug_implementations ) ]
7
+ /// A stream to skip elements of another stream based on a predicate.
8
+ #[ derive ( Debug ) ]
9
9
pub struct SkipWhile < S , P , T > {
10
10
stream : S ,
11
11
predicate : Option < P > ,
You can’t perform that action at this time.
0 commit comments