Home
last modified time | relevance | path

Searched refs:FoldFuture (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/tokio-stream/src/stream_ext/
Dfold.rs13 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/
Dstream_ext.rs22 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()