pub enum UiPathCommand {
MoveTo(Point),
LineTo(Point),
QuadraticTo {
control: Point,
to: Point,
},
CubicTo {
control1: Point,
control2: Point,
to: Point,
},
Close,
}Variants§
Trait Implementations§
Source§impl Clone for UiPathCommand
impl Clone for UiPathCommand
Source§fn clone(&self) -> UiPathCommand
fn clone(&self) -> UiPathCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UiPathCommand
Source§impl Debug for UiPathCommand
impl Debug for UiPathCommand
impl Eq for UiPathCommand
Source§impl PartialEq for UiPathCommand
impl PartialEq for UiPathCommand
impl StructuralPartialEq for UiPathCommand
Auto Trait Implementations§
impl Freeze for UiPathCommand
impl RefUnwindSafe for UiPathCommand
impl Send for UiPathCommand
impl Sync for UiPathCommand
impl Unpin for UiPathCommand
impl UnsafeUnpin for UiPathCommand
impl UnwindSafe for UiPathCommand
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