pub type UpdateSink<U> = Pin<Box<dyn Sink<U, Error = SendUpdateError> + Send + 'static>>;
A boxed sink on which updates of a particular type can be sent.
pub struct UpdateSink<U> { /* private fields */ }