pub trait IncludeHandle: Send {
type Output;
// Required method
fn transform_result(client: Client, handle: JoinHandle<()>) -> Self::Output;
}
Expand description
This trait enables us to either include or omit the mz_ore::task::JoinHandle
in the result
of a client connection.
Required Associated Types§
Required Methods§
fn transform_result(client: Client, handle: JoinHandle<()>) -> Self::Output
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.