blob: f2b922085bf576f64d1896670db0d5c6d21dcd34 [file] [log] [blame]
use futures::Stream;
pub trait MessageStream {
type Item;
fn into_stream(self) -> impl Stream<Item = Self::Item>;
}