Enum tagger::PathCommand[][src]

pub enum PathCommand<F: Display> {
Show 19 variants M(F, F), M_(F, F), L(F, F), L_(F, F), H(F), H_(F), V(F), V_(F), C(F, F, F, F, F, F), C_(F, F, F, F, F, F), S(F, F, F, F), S_(F, F, F, F), Q(F, F, F, F), Q_(F, F, F, F), T(F, F), T_(F, F), A(F, F, F, F, F, F, F), A_(F, F, F, F, F, F, F), Z(F),
}
Expand description

Construct and Write a SVG path’s data.

following: w3 spec

Variants

M(F, F)

move to

Tuple Fields of M

0: F1: F
M_(F, F)

relative move to

Tuple Fields of M_

0: F1: F
L(F, F)

line to

Tuple Fields of L

0: F1: F
L_(F, F)

relative line to

Tuple Fields of L_

0: F1: F
H(F)

horizontal to

Tuple Fields of H

0: F
H_(F)

relative horizontal to

Tuple Fields of H_

0: F
V(F)

vertical to

Tuple Fields of V

0: F
V_(F)

relative vertical to

Tuple Fields of V_

0: F
C(F, F, F, F, F, F)

curve to

Tuple Fields of C

0: F1: F2: F3: F4: F5: F
C_(F, F, F, F, F, F)

relative curve to

Tuple Fields of C_

0: F1: F2: F3: F4: F5: F
S(F, F, F, F)

shorthand curve to

Tuple Fields of S

0: F1: F2: F3: F
S_(F, F, F, F)

relative shorthand curve to

Tuple Fields of S_

0: F1: F2: F3: F
Q(F, F, F, F)

quadratic bezier curve to

Tuple Fields of Q

0: F1: F2: F3: F
Q_(F, F, F, F)

relative quadratic bezier curve to

Tuple Fields of Q_

0: F1: F2: F3: F
T(F, F)

shorthand quadratic bezier curve to

Tuple Fields of T

0: F1: F
T_(F, F)

relative shorthand quadratic bezier curve to

Tuple Fields of T_

0: F1: F
A(F, F, F, F, F, F, F)

elliptical arc

Tuple Fields of A

0: F1: F2: F3: F4: F5: F6: F
A_(F, F, F, F, F, F, F)

relative elliptical arc

Tuple Fields of A_

0: F1: F2: F3: F4: F5: F6: F
Z(F)

close path

Tuple Fields of Z

0: F

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.