Trait mz_environmentd::test_util::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

Object Safety§

This trait is not object safe.

Implementors§