Home
last modified time | relevance | path

Searched refs:output (Results 1 – 7 of 7) sorted by relevance

/tonic/examples/proto/googleapis/google/api/
H A Dfield_behavior.proto28 // A designation of a specific field behavior (required, output only, etc.)
44 // is required in requests, or given as output but ignored as input).
63 // Denotes a field as output only.
71 // corresponding field is not included in output.
/tonic/tests/integration_tests/tests/
H A Droutes_builder.rs44 let output = Output1 { in multiple_service_using_routes_builder() localVariable
47 let stream = tokio_stream::once(Ok(output)); in multiple_service_using_routes_builder()
/tonic/tonic-build/src/
H A Dmanual.rs493 let mut output = String::new(); in compile() localVariable
494 generator.finalize(&mut output); in compile()
497 fs::write(out_file, output).unwrap(); in compile()
/tonic/examples/src/routeguide/
H A Dserver.rs115 let output = async_stream::try_stream! { in route_chat() localVariable
130 Ok(Response::new(Box::pin(output) as Self::RouteChatStream)) in route_chat()
/tonic/examples/
H A Drouteguide-tutorial.md60 You should see some logging output flying past really quickly on both terminal windows. On the
61 shell where you ran the client binary, you should see the output of the bidirectional streaming rpc,
68 If you scroll up you should see the output of the other 3 request types: simple rpc, server-side
497 let output = async_stream::try_stream! {
512 Ok(Response::new(Box::pin(output)
519 from one (input) stream to another (output) stream. As the input is processed, each value is
/tonic/tonic/src/transport/server/
H A Dmod.rs1125 Some(fut) => fut.poll(cx).map(|output| { in poll()
1127 output in poll()
/tonic/
H A DCHANGELOG.md293 * **build:** use prettyplease to format output ([#890](https://github.com/hyperium/tonic/issues/890…