Skip to main content

PluginGroup

Trait PluginGroup 

Source
pub trait PluginGroup {
    // Required method
    fn build(self, app: &mut App);
}
Expand description

A group of plugins that can be added to an App together.

Plugin groups provide a convenient way to add multiple related plugins at once.

Required Methods§

Source

fn build(self, app: &mut App)

Adds all plugins in this group to the app.

Implementors§