| /tonic/tests/wellknown-compiled/proto/ |
| H A D | google.proto | 3 package google.protobuf; 5 import "google/protobuf/any.proto"; 6 import "google/protobuf/api.proto"; 7 import "google/protobuf/descriptor.proto"; 8 import "google/protobuf/duration.proto"; 9 import "google/protobuf/empty.proto"; 10 import "google/protobuf/field_mask.proto"; 12 import "google/protobuf/struct.proto"; 13 import "google/protobuf/timestamp.proto"; 14 import "google/protobuf/type.proto"; [all …]
|
| H A D | test.proto | 4 import "google/protobuf/empty.proto"; 10 rpc Call(Input) returns (google.protobuf.Empty);
|
| /tonic/tests/wellknown/proto/ |
| H A D | wellknown.proto | 5 import "google/protobuf/empty.proto"; 6 import "google/protobuf/wrappers.proto"; 7 import "google/protobuf/any.proto"; 10 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty); 11 rpc StringCall(google.protobuf.StringValue) returns (google.protobuf.Empty); 12 rpc AnyCall(google.protobuf.Any) returns (google.protobuf.Empty);
|
| /tonic/tests/default_stubs/proto/ |
| H A D | test.proto | 5 import "google/protobuf/empty.proto"; 8 rpc Unary(google.protobuf.Empty) returns (google.protobuf.Empty); 9 rpc ServerStream(google.protobuf.Empty) returns (stream google.protobuf.Empty); 10 rpc ClientStream(stream google.protobuf.Empty) returns (google.protobuf.Empty); 11 rpc BidirectionalStream(stream google.protobuf.Empty) returns (stream google.protobuf.Empty);
|
| H A D | test_default.proto | 5 import "google/protobuf/empty.proto"; 8 rpc Unary(google.protobuf.Empty) returns (google.protobuf.Empty); 9 rpc ServerStream(google.protobuf.Empty) returns (stream google.protobuf.Empty); 10 rpc ClientStream(stream google.protobuf.Empty) returns (google.protobuf.Empty); 11 rpc BidirectionalStream(stream google.protobuf.Empty) returns (stream google.protobuf.Empty);
|
| /tonic/examples/proto/googleapis/google/pubsub/v1/ |
| H A D | schema.proto | 17 package google.pubsub.v1; 19 import "google/api/annotations.proto"; 20 import "google/api/client.proto"; 22 import "google/api/resource.proto"; 23 import "google/protobuf/empty.proto"; 46 option (google.api.http) = { 55 option (google.api.http) = { 63 option (google.api.http) = { 71 option (google.api.http) = { 79 option (google.api.http) = { [all …]
|
| H A D | pubsub.proto | 17 package google.pubsub.v1; 20 import "google/api/client.proto"; 22 import "google/api/resource.proto"; 49 option (google.api.http) = { 59 option (google.api.http) = { 68 option (google.api.http) = { 77 option (google.api.http) = { 85 option (google.api.http) = { 94 option (google.api.http) = { 107 option (google.api.http) = { [all …]
|
| /tonic/tests/compression/proto/ |
| H A D | test.proto | 5 import "google/protobuf/empty.proto"; 8 rpc CompressOutputUnary(google.protobuf.Empty) returns (SomeData); 9 rpc CompressInputUnary(SomeData) returns (google.protobuf.Empty); 10 rpc CompressOutputServerStream(google.protobuf.Empty) returns (stream SomeData); 11 rpc CompressInputClientStream(stream SomeData) returns (google.protobuf.Empty);
|
| /tonic/tonic-types/proto/ |
| H A D | status.proto | 17 package google.rpc; 19 import "google/protobuf/any.proto"; 22 option go_package = "google.golang.org/genproto/googleapis/rpc/status;status"; 25 option java_package = "com.google.rpc"; 34 // [API Design Guide](https://cloud.google.com/apis/design/errors). 36 // The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]. 41 // [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client. 46 repeated google.protobuf.Any details = 3;
|
| H A D | error_details.proto | 17 package google.rpc; 19 import "google/protobuf/duration.proto"; 21 option go_package = "google.golang.org/genproto/googleapis/rpc/errdetails;errdetails"; 24 option java_package = "com.google.rpc"; 42 google.protobuf.Duration retry_delay = 1; 153 // For example, "google.com/cloud" relative to the "TOS" type would indicate 202 // of the resource: e.g. "type.googleapis.com/google.pubsub.v1.Topic". 206 // name: "[email protected].google.com", if the current 207 // error is [google.rpc.Code.PERMISSION_DENIED][google.rpc.Code.PERMISSION_DENIED].
|
| /tonic/examples/proto/googleapis/google/api/ |
| H A D | annotations.proto | 17 package google.api; 19 import "google/api/http.proto"; 20 import "google/protobuf/descriptor.proto"; 22 option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; 25 option java_package = "com.google.api"; 28 extend google.protobuf.MethodOptions {
|
| H A D | field_behavior.proto | 17 package google.api; 19 import "google/protobuf/descriptor.proto"; 24 option java_package = "com.google.api"; 27 extend google.protobuf.FieldOptions { 33 // string name = 1 [(google.api.field_behavior) = REQUIRED]; 35 // google.protobuf.Duration ttl = 1 36 // [(google.api.field_behavior) = INPUT_ONLY]; 37 // google.protobuf.Timestamp expire_time = 1 38 // [(google.api.field_behavior) = OUTPUT_ONLY, 39 // (google.api.field_behavior) = IMMUTABLE]; [all …]
|
| H A D | client.proto | 17 package google.api; 19 import "google/protobuf/descriptor.proto"; 21 option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; 24 option java_package = "com.google.api"; 27 extend google.protobuf.MethodOptions { 44 // option (google.api.method_signature) = "name,topic"; 66 extend google.protobuf.ServiceOptions { 73 // option (google.api.default_host) = "foo.googleapi.com"; 83 // option (google.api.oauth_scopes) = \ 93 // option (google.api.oauth_scopes) = \
|
| H A D | resource.proto | 17 package google.api; 19 import "google/protobuf/descriptor.proto"; 25 option java_package = "com.google.api"; 28 extend google.protobuf.FieldOptions { 34 extend google.protobuf.FileOptions { 40 extend google.protobuf.MessageOptions { 43 google.api.ResourceDescriptor resource = 1053; 58 // option (google.api.resource) = { 83 // option (google.api.resource) = { 132 // option (google.api.resource) = { [all …]
|
| H A D | http.proto | 17 package google.api; 23 option java_package = "com.google.api"; 27 // [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method 50 // [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC 59 // typically specified as an `google.api.http` annotation on the gRPC method. 71 // option (google.api.http) = { 95 // option (google.api.http) = { 130 // option (google.api.http) = { 157 // option (google.api.http) = { 187 // option (google.api.http) = { [all …]
|
| /tonic/tests/wellknown-compiled/src/ |
| H A D | lib.rs | 2 pub mod google { module 14 let _any = crate::gen::google::protobuf::Any { in grok()
|
| /tonic/tests/service_named_result/proto/ |
| H A D | result.proto | 3 import "google/protobuf/empty.proto"; 8 rpc Listen(google.protobuf.Empty) returns (Reply) {}
|
| /tonic/tonic-build/ |
| H A D | README.md | 58 │ └── google 76 //.out_dir("src/google") // you can change the generated code's location 78 &["proto/googleapis/google/pubsub/v1/pubsub.proto"], 87 tonic::include_proto!("google.pubsub.v1"); 96 pub mod google { 99 #[path = "google.pubsub.v1.rs"]
|
| /tonic/examples/src/gcp/ |
| H A D | README.md | 3 This example will attempt to fetch a list of topics using the google 21 [OAuth playground]: https://developers.google.com/oauthplayground/
|
| /tonic/tonic/benches-disabled/proto/diverse_types/ |
| H A D | diverse_types.proto | 7 option java_package = "com.google.protobuf.benchmarks";
|
| /tonic/tonic-health/proto/ |
| H A D | health.proto | 23 option go_package = "google.golang.org/grpc/health/grpc_health_v1";
|
| /tonic/tonic-reflection/proto/ |
| H A D | reflection_v1.proto | 26 option go_package = "google.golang.org/grpc/reflection/grpc_reflection_v1";
|
| /tonic/interop/proto/grpc/testing/ |
| H A D | messages.proto | 23 // import "google/protobuf/wrappers.proto";
|
| /tonic/tonic-types/ |
| H A D | README.md | 131 [error_details.proto]: https://github.com/googleapis/googleapis/blob/master/google/rpc/error_detail…
|
| /tonic/examples/ |
| H A D | helloworld-tutorial.md | 6 [protocol buffers]: https://developers.google.com/protocol-buffers/docs/overview
|