pub type ServiceServerStream<'a, T> = Box<dyn Stream<Item = Result<T, ServiceError>> + Unpin + Send + 'a>;
pub struct ServiceServerStream<'a, T>(/* private fields */);