pub trait ClientStreamingSvc<R> {
    type Response;
    type Future: Future<Output = Result<Response<Self::Response>, Status>>;

    fn call(&mut self, req: Request<Decoding<R>>) -> Self::Future;
}

Required Associated Types

Required Methods

Implementors