tinymist_world

Trait ExportDetection

Source
pub trait ExportDetection<F: CompilerFeat, D> {
    type Config: Send + Sync + 'static;

    // Required method
    fn needs_run(
        graph: &Arc<WorldComputeGraph<F>>,
        config: &Self::Config,
    ) -> bool;
}

Required Associated Types§

Source

type Config: Send + Sync + 'static

Required Methods§

Source

fn needs_run(graph: &Arc<WorldComputeGraph<F>>, config: &Self::Config) -> bool

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§