Skip to content

Commit

Permalink
Import TryAll and TryAny in the stream module
Browse files Browse the repository at this point in the history
This makes them show up on the documentation page for the `stream`
module. It also makes the return types on the `TryStreamExt`
documentation page link to the adapter types.
  • Loading branch information
cstyles authored and taiki-e committed Oct 29, 2023
1 parent 159b88d commit 65a6eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions futures-util/src/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ pub use self::stream::{ReuniteError, SplitSink, SplitStream};

mod try_stream;
pub use self::try_stream::{
try_unfold, AndThen, ErrInto, InspectErr, InspectOk, IntoStream, MapErr, MapOk, OrElse,
TryCollect, TryConcat, TryFilter, TryFilterMap, TryFlatten, TryNext, TrySkipWhile,
try_unfold, AndThen, ErrInto, InspectErr, InspectOk, IntoStream, MapErr, MapOk, OrElse, TryAll,
TryAny, TryCollect, TryConcat, TryFilter, TryFilterMap, TryFlatten, TryNext, TrySkipWhile,
TryStreamExt, TryTakeWhile, TryUnfold,
};

Expand Down

0 comments on commit 65a6eff

Please sign in to comment.