pub trait StandaloneProcessorFactory {
    type Output;

    // Required method
    fn new_for_host(context: StandalonePluginContext) -> Self::Output;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§