pub enum PathStep {
Arc(Arc),
CubicCurve(CubicCurve),
QuadraticCurve(QuadraticCurve),
Line(Line),
}Variants§
Trait Implementations§
impl Copy for PathStep
impl StructuralPartialEq for PathStep
Auto Trait Implementations§
impl Freeze for PathStep
impl RefUnwindSafe for PathStep
impl Send for PathStep
impl Sync for PathStep
impl Unpin for PathStep
impl UnwindSafe for PathStep
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