logo
pub trait Concat<D> where
    D: Data + for<'a> Deserialize<'a>, 
{ fn concat(&self, other: &dyn Stream<D>) -> OperatorStream<D>; }
Expand description

Extension trait for merging the contents of two streams.

Names the ConcatOperator using the names of the two merged streams.

Example

let merged_stream = left_stream.concat(&right_stream);

Required methods

Implementors