Trait bevy_app::PluginGroup

source ·
pub trait PluginGroup: Sized {
    // Required method
    fn build(self) -> PluginGroupBuilder;

    // Provided methods
    fn name() -> String { ... }
    fn set<T: Plugin>(self, plugin: T) -> PluginGroupBuilder { ... }
}
Expand description

Combines multiple Plugins into a single unit.

Required Methods§

source

fn build(self) -> PluginGroupBuilder

Configures the Plugins that are to be added.

Provided Methods§

source

fn name() -> String

Configures a name for the PluginGroup which is primarily used for debugging.

source

fn set<T: Plugin>(self, plugin: T) -> PluginGroupBuilder

Sets the value of the given Plugin, if it exists

Object Safety§

This trait is not object safe.

Implementors§