pub enum PathCmd {
Move(Vec2),
Line(Vec2),
Quadratic(Vec2, Vec2),
Cubic(Vec2, Vec2, Vec2),
Conic(Vec2, Vec2, f32),
Close,
}Expand description
A single command in a 2-dimensional vector path.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathCmd
impl RefUnwindSafe for PathCmd
impl Send for PathCmd
impl Sync for PathCmd
impl Unpin for PathCmd
impl UnwindSafe for PathCmd
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