grpc/server/types.rs
1use crate::common::types::Types;
2use crate::server::resp_sink_untyped::ServerResponseUntypedSink;
3
4pub(crate) struct ServerTypes;
5
6impl Types for ServerTypes {
7 type HttpSink = httpbis::ServerResponse;
8 type SinkUntyped = ServerResponseUntypedSink;
9}
10
11unsafe impl Sync for ServerTypes {}