Home
last modified time | relevance | path

Searched refs:note (Results 1 – 3 of 3) sorted by relevance

/tonic/examples/src/routeguide/
H A Dserver.rs116 while let Some(note) = stream.next().await { in route_chat()
117 let note = note?; in route_chat() localVariable
119 let location = note.location.unwrap(); in route_chat()
122 location_notes.push(note); in route_chat()
124 for note in location_notes { in route_chat()
125 yield note.clone(); in route_chat()
H A Dclient.rs70 let note = RouteNote { in run_route_chat() localVariable
78 yield note; in run_route_chat()
85 while let Some(note) = inbound.message().await? { in run_route_chat()
86 println!("NOTE = {:?}", note); in run_route_chat()
/tonic/examples/
H A Drouteguide-tutorial.md498 while let Some(note) = stream.next().await {
499 let note = note?;
501 let location = note.location.unwrap();
504 location_notes.push(note);
506 for note in location_notes {
507 yield note.clone();
752 let note = RouteNote {
760 yield note;
767 while let Some(note) = inbound.message().await? {
768 println!("NOTE = {:?}", note);