grpc 0.8.3

Rust implementation of gRPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::client::req_sink::ClientRequestSinkUntyped;
use crate::common::types::Types;

pub(crate) struct ClientTypes;

impl Types for ClientTypes {
    type HttpSink = httpbis::ClientRequest;
    type SinkUntyped = ClientRequestSinkUntyped;
}

unsafe impl Sync for ClientTypes {}