pub struct PluginGroupBuilder { /* private fields */ }Expand description
Facilitates the creation and configuration of a PluginGroup.
Provides a build ordering to ensure that Plugins which produce/require a Resource
are built before/after dependent/depending Plugins. Plugins inside the group
can be disabled, enabled or reordered.
Implementations§
Source§impl PluginGroupBuilder
impl PluginGroupBuilder
Sourcepub fn start<PG>() -> PluginGroupBuilderwhere
PG: PluginGroup,
pub fn start<PG>() -> PluginGroupBuilderwhere
PG: PluginGroup,
Start a new builder for the PluginGroup.
Sourcepub fn contains<T>(&self) -> boolwhere
T: Plugin,
pub fn contains<T>(&self) -> boolwhere
T: Plugin,
Checks if the PluginGroupBuilder contains the given Plugin.
Sourcepub fn enabled<T>(&self) -> boolwhere
T: Plugin,
pub fn enabled<T>(&self) -> boolwhere
T: Plugin,
Returns true if the PluginGroupBuilder contains the given Plugin and it’s enabled.
Sourcepub fn set<T>(self, plugin: T) -> PluginGroupBuilderwhere
T: Plugin,
pub fn set<T>(self, plugin: T) -> PluginGroupBuilderwhere
T: Plugin,
Sourcepub fn try_set<T>(
self,
plugin: T,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, T)>where
T: Plugin,
pub fn try_set<T>(
self,
plugin: T,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, T)>where
T: Plugin,
Sourcepub fn add<T>(self, plugin: T) -> PluginGroupBuilderwhere
T: Plugin,
pub fn add<T>(self, plugin: T) -> PluginGroupBuilderwhere
T: Plugin,
Adds the plugin Plugin at the end of this PluginGroupBuilder. If the plugin was
already in the group, it is removed from its previous place.
Sourcepub fn try_add<T>(
self,
plugin: T,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, T)>where
T: Plugin,
pub fn try_add<T>(
self,
plugin: T,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, T)>where
T: Plugin,
Attempts to add the plugin Plugin at the end of this PluginGroupBuilder.
If the plugin was already in the group the addition fails.
Sourcepub fn add_group(self, group: impl PluginGroup) -> PluginGroupBuilder
pub fn add_group(self, group: impl PluginGroup) -> PluginGroupBuilder
Adds a PluginGroup at the end of this PluginGroupBuilder. If the plugin was
already in the group, it is removed from its previous place.
Sourcepub fn add_before<Target>(self, plugin: impl Plugin) -> PluginGroupBuilderwhere
Target: Plugin,
pub fn add_before<Target>(self, plugin: impl Plugin) -> PluginGroupBuilderwhere
Target: Plugin,
Adds a Plugin in this PluginGroupBuilder before the plugin of type Target.
If the plugin was already the group, it is removed from its previous place.
§Panics
Panics if Target is not already in this PluginGroupBuilder.
Sourcepub fn try_add_before<Target, Insert>(
self,
plugin: Insert,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
pub fn try_add_before<Target, Insert>( self, plugin: Insert, ) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
Adds a Plugin in this PluginGroupBuilder before the plugin of type Target.
If the plugin was already in the group the add fails. If there isn’t a plugin
of type Target in the group the plugin we’re trying to insert is returned.
Sourcepub fn try_add_before_overwrite<Target, Insert>(
self,
plugin: Insert,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
pub fn try_add_before_overwrite<Target, Insert>( self, plugin: Insert, ) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
Adds a Plugin in this PluginGroupBuilder before the plugin of type Target.
If the plugin was already in the group, it is removed from its previous places.
If there isn’t a plugin of type Target in the group the plugin we’re trying to insert
is returned.
Sourcepub fn add_after<Target>(self, plugin: impl Plugin) -> PluginGroupBuilderwhere
Target: Plugin,
pub fn add_after<Target>(self, plugin: impl Plugin) -> PluginGroupBuilderwhere
Target: Plugin,
Adds a Plugin in this PluginGroupBuilder after the plugin of type Target.
If the plugin was already the group, it is removed from its previous place.
§Panics
Panics if Target is not already in this PluginGroupBuilder.
Sourcepub fn try_add_after<Target, Insert>(
self,
plugin: Insert,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
pub fn try_add_after<Target, Insert>( self, plugin: Insert, ) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
Adds a Plugin in this PluginGroupBuilder after the plugin of type Target.
If the plugin was already in the group the add fails. If there isn’t a plugin
of type Target in the group the plugin we’re trying to insert is returned.
Sourcepub fn try_add_after_overwrite<Target, Insert>(
self,
plugin: Insert,
) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
pub fn try_add_after_overwrite<Target, Insert>( self, plugin: Insert, ) -> Result<PluginGroupBuilder, (PluginGroupBuilder, Insert)>
Adds a Plugin in this PluginGroupBuilder after the plugin of type Target.
If the plugin was already in the group, it is removed from its previous places.
If there isn’t a plugin of type Target in the group the plugin we’re trying to insert
is returned.
Sourcepub fn enable<T>(self) -> PluginGroupBuilderwhere
T: Plugin,
pub fn enable<T>(self) -> PluginGroupBuilderwhere
T: Plugin,
Enables a Plugin.
Plugins within a PluginGroup are enabled by default. This function is used to
opt back in to a Plugin after disabling it. If there are no plugins
of type T in this group, it will panic.
Sourcepub fn disable<T>(self) -> PluginGroupBuilderwhere
T: Plugin,
pub fn disable<T>(self) -> PluginGroupBuilderwhere
T: Plugin,
Disables a Plugin, preventing it from being added to the App with the rest of the
PluginGroup. The disabled Plugin keeps its place in the PluginGroup, so it can
still be used for ordering with add_before or
add_after, or it can be re-enabled. If there are no
plugins of type T in this group, it will panic.
Examples found in repository?
More examples
16fn main() {
17 if cfg!(feature = "bevy_window") {
18 println!("This example is running with the bevy_window feature enabled and will not run headless.");
19 println!("Disable the default features and rerun the example to run headless.");
20 println!("To do so, run:");
21 println!();
22 println!(" cargo run --example headless --no-default-features --features bevy_log");
23 return;
24 }
25
26 // This app runs once
27 App::new()
28 .add_plugins(DefaultPlugins.set(ScheduleRunnerPlugin::run_once()))
29 .add_systems(Update, hello_world_system)
30 .run();
31
32 // This app loops forever at 60 fps
33 App::new()
34 .add_plugins(
35 DefaultPlugins
36 .set(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
37 1.0 / 60.0,
38 )))
39 // The log and ctrl+c plugin can only be registered once globally,
40 // which means we need to disable it here, because it was already registered with the
41 // app that runs once.
42 .disable::<LogPlugin>(),
43 )
44 .add_systems(Update, counter)
45 .run();
46}Trait Implementations§
Source§impl PluginGroup for PluginGroupBuilder
impl PluginGroup for PluginGroupBuilder
Source§fn build(self) -> PluginGroupBuilder
fn build(self) -> PluginGroupBuilder
Plugins that are to be added.Source§fn name() -> String
fn name() -> String
PluginGroup which is primarily used for debugging.Auto Trait Implementations§
impl Freeze for PluginGroupBuilder
impl !RefUnwindSafe for PluginGroupBuilder
impl Send for PluginGroupBuilder
impl Sync for PluginGroupBuilder
impl Unpin for PluginGroupBuilder
impl UnsafeUnpin for PluginGroupBuilder
impl !UnwindSafe for PluginGroupBuilder
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T ShaderType for self. When used in AsBindGroup
derives, it is safe to assume that all images in self exist.Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
Source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Source§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.