Enum svg_path_cst::SVGPathCommand
source · pub enum SVGPathCommand {
Show 20 variants
MovetoUpper,
MovetoLower,
LinetoUpper,
LinetoLower,
HorizontalUpper,
HorizontalLower,
VerticalUpper,
VerticalLower,
ClosepathUpper,
ClosepathLower,
CurvetoUpper,
CurvetoLower,
SmoothCurvetoUpper,
SmoothCurvetoLower,
ArcUpper,
ArcLower,
QuadraticUpper,
QuadraticLower,
SmoothQuadraticUpper,
SmoothQuadraticLower,
}Expand description
SVG path command
Variants§
MovetoUpper
M
MovetoLower
m
LinetoUpper
L
LinetoLower
l
HorizontalUpper
H
HorizontalLower
h
VerticalUpper
V
VerticalLower
v
ClosepathUpper
Z
ClosepathLower
z
CurvetoUpper
C
CurvetoLower
c
SmoothCurvetoUpper
S
SmoothCurvetoLower
s
ArcUpper
A
ArcLower
a
QuadraticUpper
Q
QuadraticLower
q
SmoothQuadraticUpper
T
SmoothQuadraticLower
t
Implementations§
Trait Implementations§
source§impl Clone for SVGPathCommand
impl Clone for SVGPathCommand
source§fn clone(&self) -> SVGPathCommand
fn clone(&self) -> SVGPathCommand
Returns a copy 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 SVGPathCommand
impl Debug for SVGPathCommand
source§impl PartialEq for SVGPathCommand
impl PartialEq for SVGPathCommand
source§fn eq(&self, other: &SVGPathCommand) -> bool
fn eq(&self, other: &SVGPathCommand) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SVGPathCommand
Auto Trait Implementations§
impl RefUnwindSafe for SVGPathCommand
impl Send for SVGPathCommand
impl Sync for SVGPathCommand
impl Unpin for SVGPathCommand
impl UnwindSafe for SVGPathCommand
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