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