pub struct FlowParticle {
pub edge_id: EdgeId,
pub start: Vec2,
pub end: Vec2,
pub speed: f32,
pub color: Vec4,
pub flow: f32,
}Fields§
§edge_id: EdgeId§start: Vec2§end: Vec2§speed: f32§color: Vec4§flow: f32Trait Implementations§
Source§impl Clone for FlowParticle
impl Clone for FlowParticle
Source§fn clone(&self) -> FlowParticle
fn clone(&self) -> FlowParticle
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 moreAuto Trait Implementations§
impl Freeze for FlowParticle
impl RefUnwindSafe for FlowParticle
impl Send for FlowParticle
impl Sync for FlowParticle
impl Unpin for FlowParticle
impl UnsafeUnpin for FlowParticle
impl UnwindSafe for FlowParticle
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