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