pub trait ExecutionControllerServerSender {
type Transport: Transport;
// Required method
fn on_stop<___R>(
&self,
request: &mut ___R,
) -> Result<SendFuture<'_, Self::Transport>, EncodeError>
where ___R: Encode<<Self::Transport as Transport>::SendBuffer, Encoded = <OnStop as Method>::Response>;
}
Expand description
A helper trait for the ExecutionController
server sender.
Required Associated Types§
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.