pub trait ServerStreamingMsg<S: Service>: Msg<S, Pattern = ServerStreaming> {
type Response: Into<S::Res> + TryFrom<S::Res> + Send + 'static;
}Expand description
Defines response type for a server streaming message.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".