File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44extern crate tonic_build;
55
66fn main ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
7- tonic_build:: configure ( )
8- . build_server ( true )
9- . out_dir ( "src/utils/" )
10- . compile ( & [ "src/utils/proto/keyprovider.proto" ] , & [ "src/utils" ] ) ?;
7+ // tonic_build::configure()
8+ // .build_server(true)
9+ // .out_dir("src/utils/")
10+ // .compile(&["src/utils/proto/keyprovider.proto"], &["src/utils"])?;
1111 Ok ( ( ) )
1212}
Original file line number Diff line number Diff line change @@ -59,11 +59,13 @@ pub mod key_provider_service_client {
5959 #[ doc = r"" ]
6060 #[ doc = r" This requires the server to support it otherwise it might respond with an" ]
6161 #[ doc = r" error." ]
62+ #[ must_use]
6263 pub fn send_gzip ( mut self ) -> Self {
6364 self . inner = self . inner . send_gzip ( ) ;
6465 self
6566 }
6667 #[ doc = r" Enable decompressing responses with `gzip`." ]
68+ #[ must_use]
6769 pub fn accept_gzip ( mut self ) -> Self {
6870 self . inner = self . inner . accept_gzip ( ) ;
6971 self
You can’t perform that action at this time.
0 commit comments