Home
last modified time | relevance | path

Searched refs:SelectNextSome (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/futures-util/src/stream/stream/
Dselect_next_some.rs12 pub struct SelectNextSome<'a, St: ?Sized> { struct
16 impl<'a, St: ?Sized> SelectNextSome<'a, St> { impl
22 impl<St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextSome<'_, St> { implementation
28 impl<St: ?Sized + FusedStream + Unpin> Future for SelectNextSome<'_, St> { implementation
Dmod.rs122 pub use self::select_next_some::SelectNextSome;
1466 fn select_next_some(&mut self) -> SelectNextSome<'_, Self> in select_next_some()
1470 assert_future::<Self::Item, _>(SelectNextSome::new(self)) in select_next_some()
/external/rust/crates/futures-util/src/stream/
Dmod.rs22 Fuse, Inspect, Map, Next, Peek, Peekable, Scan, SelectNextSome, Skip, SkipWhile, StreamExt,
/external/rust/crates/futures/tests/
Dauto_traits.rs1495 assert_impl!(SelectNextSome<'_, ()>: Send);
1496 assert_not_impl!(SelectNextSome<'_, *const ()>: Send);
1497 assert_impl!(SelectNextSome<'_, ()>: Sync);
1498 assert_not_impl!(SelectNextSome<'_, *const ()>: Sync);
1499 assert_impl!(SelectNextSome<'_, PhantomPinned>: Unpin);