Trait quic_rpc::pattern::client_streaming::ClientStreamingMsg
source · pub trait ClientStreamingMsg<S: Service>: Msg<S, Pattern = ClientStreaming> {
type Update: Into<S::Req> + TryFrom<S::Req> + Send + 'static;
type Response: Into<S::Res> + TryFrom<S::Res> + Send + 'static;
}
Expand description
Defines update type and response type for a client streaming message.
Required Associated Types§
Object Safety§
This trait is not object safe.