Home
last modified time | relevance | path

Searched refs:RouteNote (Results 1 – 4 of 4) sorted by relevance

/tonic/examples/proto/routeguide/
H A Droute_guide.proto51 rpc RouteChat(stream RouteNote) returns (stream RouteNote) {}
84 // A RouteNote is a message sent while at a given point.
85 message RouteNote { message
/tonic/examples/src/routeguide/
H A Dclient.rs11 use routeguide::{Point, Rectangle, RouteNote};
70 let note = RouteNote { in run_route_chat()
H A Dserver.rs12 use routeguide::{Feature, Point, Rectangle, RouteNote, RouteSummary};
104 type RouteChatStream = Pin<Box<dyn Stream<Item = Result<RouteNote, Status>> + Send + 'static>>;
108 request: Request<tonic::Streaming<RouteNote>>, in route_chat() argument
/tonic/examples/
H A Drouteguide-tutorial.md146 rpc RouteChat(stream RouteNote) returns (stream RouteNote) {}
206 - Struct definitions for message types `Point`, `Rectangle`, `Feature`, `RouteNote`, `RouteSummary`.
255 use routeguide::{Feature, Point, Rectangle, RouteNote, RouteSummary};
298 _request: Request<tonic::Streaming<RouteNote>>,
479 of `RouteNote`s and returns a stream of `RouteNote`s.
487 Pin<Box<dyn Stream<Item = Result<RouteNote, Status>> + Send + 'static>>;
492 request: Request<tonic::Streaming<RouteNote>>,
520 inserted into the notes map, yielding a clone of the original `RouteNote`. The resulting stream
600 use routeguide::{Point, Rectangle, RouteNote};
752 let note = RouteNote {
[all …]