grpc 0.8.3

Rust implementation of gRPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::common::types::Types;
use crate::server::resp_sink_untyped::ServerResponseUntypedSink;

pub(crate) struct ServerTypes;

impl Types for ServerTypes {
    type HttpSink = httpbis::ServerResponse;
    type SinkUntyped = ServerResponseUntypedSink;
}

unsafe impl Sync for ServerTypes {}