pub type BoxSendSink<T, E> = Box<dyn Sink<SinkItem = T, SinkError = E> + Send>;
pub struct BoxSendSink<T, E>(/* private fields */);