1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#![allow(unknown_lints)]
#![allow(clippy::all)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unsafe_code)]
#![allow(unused_imports)]
#![allow(unused_results)]
const METHOD_SERVICE_CONTROLLER_CHECK: ::grpcio::Method<super::service_controller::CheckRequest, super::service_controller::CheckResponse> = ::grpcio::Method {
ty: ::grpcio::MethodType::Unary,
name: "/google.api.servicecontrol.v1.ServiceController/Check",
req_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de },
resp_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de },
};
const METHOD_SERVICE_CONTROLLER_REPORT: ::grpcio::Method<super::service_controller::ReportRequest, super::service_controller::ReportResponse> = ::grpcio::Method {
ty: ::grpcio::MethodType::Unary,
name: "/google.api.servicecontrol.v1.ServiceController/Report",
req_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de },
resp_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de },
};
#[derive(Clone)]
pub struct ServiceControllerClient {
client: ::grpcio::Client,
}
impl ServiceControllerClient {
pub fn new(channel: ::grpcio::Channel) -> Self {
ServiceControllerClient {
client: ::grpcio::Client::new(channel),
}
}
pub fn check_opt(&self, req: &super::service_controller::CheckRequest, opt: ::grpcio::CallOption) -> ::grpcio::Result<super::service_controller::CheckResponse> {
self.client.unary_call(&METHOD_SERVICE_CONTROLLER_CHECK, req, opt)
}
pub fn check(&self, req: &super::service_controller::CheckRequest) -> ::grpcio::Result<super::service_controller::CheckResponse> {
self.check_opt(req, ::grpcio::CallOption::default())
}
pub fn check_async_opt(&self, req: &super::service_controller::CheckRequest, opt: ::grpcio::CallOption) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver<super::service_controller::CheckResponse>> {
self.client.unary_call_async(&METHOD_SERVICE_CONTROLLER_CHECK, req, opt)
}
pub fn check_async(&self, req: &super::service_controller::CheckRequest) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver<super::service_controller::CheckResponse>> {
self.check_async_opt(req, ::grpcio::CallOption::default())
}
pub fn report_opt(&self, req: &super::service_controller::ReportRequest, opt: ::grpcio::CallOption) -> ::grpcio::Result<super::service_controller::ReportResponse> {
self.client.unary_call(&METHOD_SERVICE_CONTROLLER_REPORT, req, opt)
}
pub fn report(&self, req: &super::service_controller::ReportRequest) -> ::grpcio::Result<super::service_controller::ReportResponse> {
self.report_opt(req, ::grpcio::CallOption::default())
}
pub fn report_async_opt(&self, req: &super::service_controller::ReportRequest, opt: ::grpcio::CallOption) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver<super::service_controller::ReportResponse>> {
self.client.unary_call_async(&METHOD_SERVICE_CONTROLLER_REPORT, req, opt)
}
pub fn report_async(&self, req: &super::service_controller::ReportRequest) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver<super::service_controller::ReportResponse>> {
self.report_async_opt(req, ::grpcio::CallOption::default())
}
pub fn spawn<F>(&self, f: F) where F: ::futures::Future<Output = ()> + Send + 'static {
self.client.spawn(f)
}
}
pub trait ServiceController {
fn check(&mut self, ctx: ::grpcio::RpcContext, _req: super::service_controller::CheckRequest, sink: ::grpcio::UnarySink<super::service_controller::CheckResponse>) {
grpcio::unimplemented_call!(ctx, sink)
}
fn report(&mut self, ctx: ::grpcio::RpcContext, _req: super::service_controller::ReportRequest, sink: ::grpcio::UnarySink<super::service_controller::ReportResponse>) {
grpcio::unimplemented_call!(ctx, sink)
}
}
pub fn create_service_controller<S: ServiceController + Send + Clone + 'static>(s: S) -> ::grpcio::Service {
let mut builder = ::grpcio::ServiceBuilder::new();
let mut instance = s.clone();
builder = builder.add_unary_handler(&METHOD_SERVICE_CONTROLLER_CHECK, move |ctx, req, resp| {
instance.check(ctx, req, resp)
});
let mut instance = s;
builder = builder.add_unary_handler(&METHOD_SERVICE_CONTROLLER_REPORT, move |ctx, req, resp| {
instance.report(ctx, req, resp)
});
builder.build()
}