#[repr(C)]pub enum LinearCmd {
MoveTo(Point),
LineTo(Point),
Close,
}Expand description
Represents linear path commands for simplified path operations.
Variants§
Implementations§
Trait Implementations§
Source§impl PathAppliable for LinearCmd
impl PathAppliable for LinearCmd
Source§impl PathTransform for LinearCmd
impl PathTransform for LinearCmd
impl Copy for LinearCmd
impl StructuralPartialEq for LinearCmd
Auto Trait Implementations§
impl Freeze for LinearCmd
impl RefUnwindSafe for LinearCmd
impl Send for LinearCmd
impl Sync for LinearCmd
impl Unpin for LinearCmd
impl UnsafeUnpin for LinearCmd
impl UnwindSafe for LinearCmd
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