type google.golang.org/grpc.GenericServerStream

8 uses

	google.golang.org/grpc (current package)
		stream_interfaces.go#L207: type GenericServerStream[Req any, Res any] struct {
		stream_interfaces.go#L211: var _ ServerStreamingServer[string] = (*GenericServerStream[int, string])(nil)
		stream_interfaces.go#L212: var _ ClientStreamingServer[int, string] = (*GenericServerStream[int, string])(nil)
		stream_interfaces.go#L213: var _ BidiStreamingServer[int, string] = (*GenericServerStream[int, string])(nil)
		stream_interfaces.go#L218: func (x *GenericServerStream[Req, Res]) Send(m *Res) error {
		stream_interfaces.go#L225: func (x *GenericServerStream[Req, Res]) SendAndClose(m *Res) error {
		stream_interfaces.go#L232: func (x *GenericServerStream[Req, Res]) Recv() (*Req, error) {

	google.golang.org/grpc/health/grpc_health_v1
		health_grpc.pb.go#L260: 	return srv.(HealthServer).Watch(m, &grpc.GenericServerStream[HealthCheckRequest, HealthCheckResponse]{ServerStream: stream})