pub struct TrailPoint {
pub position: Vec3,
pub width: f32,
pub color: Vec4,
pub time: f32,
}Expand description
A single trail point.
Fields§
§position: Vec3§width: f32§color: Vec4§time: f32Trait Implementations§
Source§impl Clone for TrailPoint
impl Clone for TrailPoint
Source§fn clone(&self) -> TrailPoint
fn clone(&self) -> TrailPoint
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 TrailPoint
impl RefUnwindSafe for TrailPoint
impl Send for TrailPoint
impl Sync for TrailPoint
impl Unpin for TrailPoint
impl UnsafeUnpin for TrailPoint
impl UnwindSafe for TrailPoint
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