pub enum ParticleBlendMode {
Alpha,
Additive,
Multiply,
}Expand description
Particle blend mode
Variants§
Alpha
Standard alpha blending
Additive
Additive blending (for glowing effects)
Multiply
Multiplicative blending
Trait Implementations§
Source§impl Clone for ParticleBlendMode
impl Clone for ParticleBlendMode
Source§fn clone(&self) -> ParticleBlendMode
fn clone(&self) -> ParticleBlendMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParticleBlendMode
impl Debug for ParticleBlendMode
Source§impl Default for ParticleBlendMode
impl Default for ParticleBlendMode
Source§fn default() -> ParticleBlendMode
fn default() -> ParticleBlendMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParticleBlendMode
impl PartialEq for ParticleBlendMode
impl Copy for ParticleBlendMode
impl Eq for ParticleBlendMode
impl StructuralPartialEq for ParticleBlendMode
Auto Trait Implementations§
impl Freeze for ParticleBlendMode
impl RefUnwindSafe for ParticleBlendMode
impl Send for ParticleBlendMode
impl Sync for ParticleBlendMode
impl Unpin for ParticleBlendMode
impl UnsafeUnpin for ParticleBlendMode
impl UnwindSafe for ParticleBlendMode
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