mz_environmentd::test_util

Trait IncludeHandle

Source
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§

Source

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.

Implementors§