Skip to main content

ExecutionStrategy

Trait ExecutionStrategy 

Source
pub trait ExecutionStrategy {
    // Required method
    fn run_bridge_and_client(
        &self,
        dispatcher: &mut Dispatcher<impl Server>,
        input: Buffer,
        run_client: extern "C" fn(BridgeConfig<'_>) -> Buffer,
        force_show_panics: bool,
    ) -> Buffer;
}
🔬This is a nightly-only experimental API. (proc_macro_internals)

Required Methods§

Source

fn run_bridge_and_client( &self, dispatcher: &mut Dispatcher<impl Server>, input: Buffer, run_client: extern "C" fn(BridgeConfig<'_>) -> Buffer, force_show_panics: bool, ) -> Buffer

🔬This is a nightly-only experimental API. (proc_macro_internals)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§