pub struct ParticleList {
pub particles: Vec<ParticleData>,
}Expand description
A list of particle effects.
Fields§
§particles: Vec<ParticleData>Trait Implementations§
Source§impl Clone for ParticleList
impl Clone for ParticleList
Source§fn clone(&self) -> ParticleList
fn clone(&self) -> ParticleList
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 moreSource§impl Debug for ParticleList
impl Debug for ParticleList
Source§impl Default for ParticleList
impl Default for ParticleList
Source§fn default() -> ParticleList
fn default() -> ParticleList
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParticleList
impl PartialEq for ParticleList
Source§fn eq(&self, other: &ParticleList) -> bool
fn eq(&self, other: &ParticleList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParticleList
Auto Trait Implementations§
impl Freeze for ParticleList
impl RefUnwindSafe for ParticleList
impl Send for ParticleList
impl Sync for ParticleList
impl Unpin for ParticleList
impl UnsafeUnpin for ParticleList
impl UnwindSafe for ParticleList
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