| /tonic/examples/src/gcp/ |
| H A D | client.rs | 20 let project = std::env::args() in main() localVariable 47 project: format!("projects/{0}", project), in main()
|
| H A D | README.md | 13 Once, you have this token you must fetch your GCP project id which can be found 18 GCP_AUTH_TOKEN="<access-token>" cargo run --bin gcp-client -- <project-id>
|
| /tonic/ |
| H A D | SECURITY.md | 3 tonic (and related projects in hyperium) uses the same security policy as the [Tokio project][tokio… 7 The process for reporting an issue is the same as the [Tokio project][tokio-security]. This include…
|
| H A D | README.md | 75 :balloon: Thanks for your help improving the project! We are so happy to have 77 project. 83 This project is licensed under the [MIT license](LICENSE).
|
| H A D | CONTRIBUTING.md | 3 :balloon: Thanks for your help improving the project! We are so happy to have 18 Tonic is a part of the [Tokio][tokio] and [Hyperium][hyperium] project, and follows the project's 29 The `tonic` project adheres to the [Rust Code of Conduct][coc]. This describes 111 functional guidelines of the Tokio project. 318 Requests have a responsibility to both the project and the individual making the 363 the contributor to learn a bit more about the project. 397 Since the Tonic project consists of a number of crates, many of which depend on
|
| /tonic/examples/proto/googleapis/google/api/ |
| H A D | resource.proto | 61 // pattern: "projects/{project}/topics/{topic}" 63 // parent_name_extractor: "projects/{project}" 73 // - pattern: "projects/{project}/topics/{topic}" 75 // parent_name_extractor: "projects/{project}" 86 // pattern: "projects/{project}/logs/{log}" 88 // parent_name_extractor: "projects/{project}" 113 // - pattern: "projects/{project}/logs/{log}" 115 // parent_name_extractor: "projects/{project}" 211 // - "projects/{project}/topics/{topic}" 212 // - "projects/{project}/knowledgeBases/{knowledge_base}" [all …]
|
| /tonic/examples/proto/googleapis/google/pubsub/v1/ |
| H A D | schema.proto | 61 // Lists schemas in a project. 100 pattern: "projects/{project}/schemas/{schema}" 116 // Format is `projects/{project}/schemas/{schema}`. 131 // Format is `projects/{project-id}`. 170 // Format is `projects/{project}/schemas/{schema}`. 184 // Required. The name of the project in which to list schemas. 185 // Format is `projects/{project-id}`. 220 // Format is `projects/{project}/schemas/{schema}`. 230 // Format is `projects/{project-id}`. 248 // Format is `projects/{project-id}`. [all …]
|
| H A D | pubsub.proto | 86 get: "/v1/{project=projects/*}/topics" 88 option (google.api.method_signature) = "project"; 166 pattern: "projects/{project}/topics/{topic}" 289 // Format is `projects/{project-id}`. 290 string project = 1 [ field 556 get: "/v1/{project=projects/*}/snapshots" 724 // parent project (i.e., 926 // Format is `projects/{project-id}`. 927 string project = 1 [ field 1245 // Format is `projects/{project-id}`. [all …]
|
| /tonic/tonic-types/proto/ |
| H A D | error_details.proto | 56 // For example if a daily limit was exceeded for the calling project, 57 // a service could respond with a QuotaFailure detail containing the project 59 // calling project hasn't enabled the service in the developer console, then 60 // a service could respond with the project id and set `service_disabled` 70 // For example, "clientip:<ip address of client>" or "project:<Google 71 // developer project id>". 211 // For example, "user:<owner email>" or "project:<Google developer project 216 // For example, updating a cloud project may require the `writer` permission 217 // on the developer console project. 224 // project hasn't enabled the accessed service, this can contain a URL pointing
|
| /tonic/tonic/src/service/ |
| H A D | interceptor.rs | 186 #[pin_project(project = KindProj)] 200 match self.project().kind.project() { in poll() 219 #[pin_project(project = ResponseBodyKindProj)] 248 match self.project().kind.project() { in poll_frame()
|
| H A D | recover_error.rs | 93 match ready!(self.project().inner.poll(cx)) { in poll() 144 match self.project().inner.as_pin_mut() { in poll_frame()
|
| /tonic/tonic-web/src/ |
| H A D | call.rs | 155 .decode(self.as_mut().project().buf.split_to(index)) in decode_chunk() 180 let this = self.as_mut().project(); in poll_decode() 208 .project() in poll_decode() 220 let this = self.as_mut().project(); in poll_encode() 269 .project() in poll_frame() 275 match me.as_mut().project().trailers { in poll_frame() 280 me.as_mut().project().trailers.replace(trailers); in poll_frame() 292 let buf = me.as_mut().project().decoded; in poll_frame() 300 me.as_mut().project().trailers.replace(trailers); in poll_frame() 308 } else if let Some(trailers) = me.as_mut().project().trailers.take() { in poll_frame()
|
| H A D | client.rs | 96 let res = ready!(self.project().inner.poll(cx)); in poll()
|
| H A D | service.rs | 128 #[pin_project(project = CaseProj)] 162 let this = self.project(); in poll() 164 match this.case.project() { in poll()
|
| /tonic/tests/compression/ |
| H A D | Cargo.toml | 15 pin-project = "1.0"
|
| /tonic/tonic/src/transport/channel/service/ |
| H A D | reconnect.rs | 181 #[pin_project(project = InnerProj)] 211 let me = self.project(); in poll() 212 match me.inner.project() { in poll()
|
| /tonic/tests/compression/src/ |
| H A D | util.rs | 56 let this = self.project(); in poll_frame() 109 let frame = ready!(self.project().rx.poll_recv(cx)); in poll_frame()
|
| /tonic/tonic-web/ |
| H A D | Cargo.toml | 24 pin-project = "1"
|
| /tonic/tonic/src/codec/ |
| H A D | encode.rs | 21 #[pin_project(project = EncodedBytesProj)] 86 } = self.project(); in poll_next() 319 let self_proj = self.project(); in poll_frame()
|
| /tonic/interop/proto/grpc/testing/ |
| H A D | empty.proto | 20 // messages in your project. A typical example is to use it as argument or the
|
| /tonic/tonic/src/transport/server/ |
| H A D | io_stream.rs | 55 match ready!(self.as_mut().project().inner.poll_next(cx)) { in poll_next_without_tls() 84 let mut projected = self.as_mut().project(); in poll_next()
|
| H A D | mod.rs | 1041 let this = self.project(); in poll() 1124 match self.as_mut().project().inner.as_pin_mut() { in poll() 1126 self.project().inner.set(None); in poll()
|
| /tonic/examples/ |
| H A D | helloworld-tutorial.md | 17 For this tutorial, we will start by creating a new Rust project with Cargo: 34 [protocol buffers]. We will keep our `.proto` files in a directory in our project's root. 127 At the root of your project (not /src), create a `build.rs` file and add the following code: 136 This tells `tonic-build` to compile your protobufs when you build your Rust project. While you can … 318 …e a `proto/helloworld.proto` file, a `build.rs` file at the root of your project, and `src/server.…
|
| /tonic/tonic/src/transport/service/ |
| H A D | grpc_timeout.rs | 81 let this = self.project(); in poll()
|
| /tonic/tonic/ |
| H A D | Cargo.toml | 69 pin-project = "1.0.11"
|