pub enum DrawingCommand {
MoveTo(Vec<(i32, i32)>),
LineTo(Vec<(i32, i32)>),
ClosePath,
}Variants§
Trait Implementations§
Source§impl Clone for DrawingCommand
impl Clone for DrawingCommand
Source§fn clone(&self) -> DrawingCommand
fn clone(&self) -> DrawingCommand
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 moreSource§impl Debug for DrawingCommand
impl Debug for DrawingCommand
Source§impl PartialEq for DrawingCommand
impl PartialEq for DrawingCommand
impl Eq for DrawingCommand
impl StructuralPartialEq for DrawingCommand
Auto Trait Implementations§
impl Freeze for DrawingCommand
impl RefUnwindSafe for DrawingCommand
impl Send for DrawingCommand
impl Sync for DrawingCommand
impl Unpin for DrawingCommand
impl UnwindSafe for DrawingCommand
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