pub trait StreamingTransform<S, Output> {
type Error: Error + Send + Sync;
// Required method
fn transform_stream<'a>(
&'a self,
stream: S,
) -> Pin<Box<dyn Stream<Item = Result<Output>> + Send + 'a>>
where S: Stream + Send + 'a;
}Expand description
Trait for streaming transformations