pub enum FireworkInstallForm {
StaticInstall,
DynamicInstall,
}
Expand description
StaticInstall
keeps all the fireworks in FireworkManager
and won’t delete them
DynamicInstall
automatically remove fireworks that are Gone
, which let you add fireworks continuously
§Notes
FireworkManager
that hasDynamicInstall
can’t loop, it will ignore the setenable_loop
value
Variants§
Trait Implementations§
Source§impl Debug for FireworkInstallForm
impl Debug for FireworkInstallForm
Source§impl PartialEq for FireworkInstallForm
impl PartialEq for FireworkInstallForm
impl StructuralPartialEq for FireworkInstallForm
Auto Trait Implementations§
impl Freeze for FireworkInstallForm
impl RefUnwindSafe for FireworkInstallForm
impl Send for FireworkInstallForm
impl Sync for FireworkInstallForm
impl Unpin for FireworkInstallForm
impl UnwindSafe for FireworkInstallForm
Blanket Implementations§
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
Mutably borrows from an owned value. Read more