ya-gcp 0.13.0

APIs for using Google Cloud Platform services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Items and functionality specific to gRPC services

pub use tonic::{
    body::BoxBody,
    client::GrpcService,
    codegen::{Body, Bytes, StdError},
};

mod status_code_set;
pub use status_code_set::StatusCodeSet;

/// The default grpc transport implementation
pub type DefaultGrpcImpl = crate::auth::grpc::AuthGrpcService<tonic::transport::Channel>;