grpc 0.8.3

Rust implementation of gRPC
Documentation
1
2
3
4
5
6
use futures::Future;
use futures::Stream;
use std::pin::Pin;

pub type GrpcFuture<T> = Pin<Box<dyn Future<Output = crate::Result<T>> + Send + 'static>>;
pub type GrpcStream<T> = Pin<Box<dyn Stream<Item = crate::Result<T>> + Send + 'static>>;