pub trait PluginBuilder<T: UserEvent> {
    type Plugin: Plugin<T>;

    fn build(self, context: Context<T>) -> Self::Plugin;
}

Required Associated Types§

Required Methods§

Implementors§