Searched refs:FoldFuture (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/tokio-stream/src/stream_ext/ |
D | fold.rs | 13 pub struct FoldFuture<St, B, F> { 24 impl<St, B, F> FoldFuture<St, B, F> { implementation 35 impl<St, B, F> Future for FoldFuture<St, B, F> implementation
|
/external/rust/crates/tokio-stream/src/ |
D | stream_ext.rs | 22 use fold::FoldFuture; 723 fn fold<B, F>(self, init: B, f: F) -> FoldFuture<Self, B, F> in fold() 728 FoldFuture::new(self, init, f) in fold()
|