Trait hydroflow::util::deploy::ConnectedSink
pub trait ConnectedSink {
type Input: Send;
type Sink: Sink<Self::Input, Error = Error> + Send + Sync;
// Required method
fn into_sink(self) -> Self::Sink;
}