usecrate::data::ArconType;usecrate::dataflow::stream::Stream;/// Represents a stream that has been keyed
pubstructKeyedStream<T: ArconType>{pub(crate)stream:Stream<T>,
}impl<T: ArconType>KeyedStream<T>{pub(super)fnfrom(stream:Stream<T>)->Self{Self{ stream }}}