Home
last modified time | relevance | path

Searched refs:routeguide (Results 1 – 10 of 10) sorted by relevance

/tonic/examples/src/routeguide/
H A Ddata.rs17 pub fn load() -> Vec<crate::routeguide::Feature> { in load()
26 .map(|feature| crate::routeguide::Feature { in load()
28 location: Some(crate::routeguide::Point { in load()
H A Dclient.rs10 use routeguide::route_guide_client::RouteGuideClient;
11 use routeguide::{Point, Rectangle, RouteNote};
13 pub mod routeguide { module
H A Dserver.rs11 use routeguide::route_guide_server::{RouteGuide, RouteGuideServer};
12 use routeguide::{Feature, Point, Rectangle, RouteNote, RouteSummary};
14 pub mod routeguide { module
/tonic/examples/
H A Drouteguide-tutorial.md52 $ cargo run --bin routeguide-server
77 $ cargo new routeguide
78 $ cd routeguide
94 [examples/proto/routeguide/route_guide.proto][routeguide-proto].
227 [examples/src/routeguide/server.rs][routeguide-server].
243 code in a path similar to `target/debug/build/routeguide/out/routeguide.rs`.
250 pub mod routeguide {
569 complete example client code in [examples/src/routeguide/client.rs][routeguide-client].
576 name = "routeguide-server"
580 name = "routeguide-client"
[all …]
H A DCargo.toml24 name = "routeguide-server"
25 path = "src/routeguide/server.rs"
26 required-features = ["routeguide"]
29 name = "routeguide-client"
30 path = "src/routeguide/client.rs"
31 required-features = ["routeguide"]
252 routeguide = ["dep:async-stream", "dep:tokio-stream", "dep:rand", "dep:serde", "dep:serde_json"]
271 full = ["gcp", "routeguide", "reflection", "autoreload", "health", "grpc-web", "tracing", "uds", "s…
H A DREADME.md48 $ cargo run --bin routeguide-client
54 $ cargo run --bin routeguide-server
H A Dhelloworld-tutorial.md43 … would like to see a Tonic example which uses all four kinds please read the [routeguide tutorial].
45 [routeguide tutorial]: https://github.com/hyperium/tonic/blob/master/examples/routeguide-tutorial.md
325 …th tutorial which showcases an advanced gRPC server in Tonic, please see the [routeguide tutorial].
/tonic/
H A DREADME.md37 - The [`routeguide`][routeguide-tutorial] tutorial provides a complete example of using `tonic` and…
110 [routeguide-tutorial]: https://github.com/hyperium/tonic/blob/master/examples/routeguide-tutorial.md
H A DCHANGELOG.md683 * **docs:** Add routeguide tutorial ([#21](https://github.com/hyperium/tonic/issues/21)) ([5d0a795]…
/tonic/examples/proto/routeguide/
H A Droute_guide.proto18 option java_package = "io.grpc.examples.routeguide";
21 package routeguide; package