quic_rpc/pattern/
mod.rs

1//! Predefined interaction patterns.
2//!
3//! An interaction pattern can be as simple as an rpc call or something more
4//! complex such as bidirectional streaming.
5//!
6//! Each pattern defines different associated message types for the interaction.
7pub mod bidi_streaming;
8pub mod client_streaming;
9pub mod rpc;
10pub mod server_streaming;
11pub mod try_server_streaming;