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.
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 !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, 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> 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 more