pub trait EchoLocalClientHandler<___T: Transport = Channel> {
// Required method
fn on_string(
&mut self,
request: Request<OnString, ___T>,
) -> impl Future<Output = ()>;
}Expand description
A client handler for the Echo protocol.
See Echo for more details.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.