pub trait CloneableServerHandler<___T: Transport = Channel> {
// Required method
fn clone(
&mut self,
request: Request<Clone, ___T>,
) -> impl Future<Output = ()> + Send;
}
Expand description
A server handler for the Cloneable protocol.
See Cloneable
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.