Trait quic_rpc_utils::ClientStreamingMsg
source · pub trait ClientStreamingMsg<S>: Msg<S, Pattern = ClientStreaming>where
S: Service,{
type Update: Into<<S as Service>::Req> + TryFrom<<S as Service>::Req> + Send + 'static;
type Response: Into<<S as Service>::Res> + TryFrom<<S as Service>::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.