streamweave_transformers/split-at/
input.rs

1use super::split_at_transformer::SplitAtTransformer;
2use futures::Stream;
3use std::pin::Pin;
4use streamweave::Input;
5
6impl<T> Input for SplitAtTransformer<T>
7where
8  T: std::fmt::Debug + Clone + Send + Sync + 'static,
9{
10  type Input = T;
11  type InputStream = Pin<Box<dyn Stream<Item = T> + Send>>;
12}