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