Searched defs:BoxStream (Results 1 – 2 of 2) sorted by relevance
4 type BoxStream<T> = std::pin::Pin<Box<dyn tokio_stream::Stream<Item = T>>>; typedef
10 pub type BoxStream<'a, T> = Pin<alloc::boxed::Box<dyn Stream<Item = T> + Send + 'a>>; typedef