Trait hydroflow::util::deploy::ConnectedSource
pub trait ConnectedSource {
type Output: Send;
type Stream: Stream<Item = Result<Self::Output, Error>> + Send + Sync;
// Required method
fn into_source(self) -> Self::Stream;
}