#[repr(i32)]pub enum ParticleBlending {
Opaque = 0,
AlphaBlend = 1,
Additive = 2,
AlphaTest = 3,
AdditiveAlphaTest = 4,
}Variants§
Trait Implementations§
Source§impl Clone for ParticleBlending
impl Clone for ParticleBlending
Source§fn clone(&self) -> ParticleBlending
fn clone(&self) -> ParticleBlending
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ParticleBlending
Source§impl Debug for ParticleBlending
impl Debug for ParticleBlending
impl Eq for ParticleBlending
Source§impl Hash for ParticleBlending
impl Hash for ParticleBlending
Source§impl PartialEq for ParticleBlending
impl PartialEq for ParticleBlending
impl StructuralPartialEq for ParticleBlending
Auto Trait Implementations§
impl Freeze for ParticleBlending
impl RefUnwindSafe for ParticleBlending
impl Send for ParticleBlending
impl Sync for ParticleBlending
impl Unpin for ParticleBlending
impl UnsafeUnpin for ParticleBlending
impl UnwindSafe for ParticleBlending
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