pub trait PluginImpl: ObjectImpl + PluginImplExt {
    // Provided methods
    fn enable(&self, plugin: &Self::Type, error_handler: Transition) { ... }
    fn disable(&self, plugin: &Self::Type) { ... }
}

Provided Methods§

source

fn enable(&self, plugin: &Self::Type, error_handler: Transition)

source

fn disable(&self, plugin: &Self::Type)

Implementors§