pub type BoxSink<T, E> = Box<dyn Sink<SinkItem = T, SinkError = E> + Send>;
A type alias for Box<Sink + Send>
Box<Sink + Send>