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