Lines Matching refs:Result
7 use std::result::Result as StdResult;
20 type Result<T> = StdResult<Response<T>, Status>; typedef
27 async fn empty_call(&self, _request: Request<Empty>) -> Result<Empty> { in empty_call()
31 async fn unary_call(&self, request: Request<SimpleRequest>) -> Result<SimpleResponse> { in unary_call()
57 async fn cacheable_unary_call(&self, _: Request<SimpleRequest>) -> Result<SimpleResponse> { in cacheable_unary_call()
66 ) -> Result<Self::StreamingOutputCallStream> { in streaming_output_call()
89 ) -> Result<StreamingInputCallResponse> { in streaming_input_call()
109 ) -> Result<Self::FullDuplexCallStream> { in full_duplex_call()
149 ) -> Result<Self::HalfDuplexCallStream> { in half_duplex_call()
153 async fn unimplemented_call(&self, _: Request<Empty>) -> Result<Empty> { in unimplemented_call()
163 async fn unimplemented_call(&self, _req: Request<Empty>) -> Result<Empty> { in unimplemented_call()