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)

Tuple Fields

0: F
1: F

move to

M_(F, F)

Tuple Fields

0: F
1: F

relative move to

L(F, F)

Tuple Fields

0: F
1: F

line to

L_(F, F)

Tuple Fields

0: F
1: F

relative line to

H(F)

Tuple Fields

0: F

horizontal to

H_(F)

Tuple Fields

0: F

relative horizontal to

V(F)

Tuple Fields

0: F

vertical to

V_(F)

Tuple Fields

0: F

relative vertical to

C(F, F, F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F
4: F
5: F

curve to

C_(F, F, F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F
4: F
5: F

relative curve to

S(F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F

shorthand curve to

S_(F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F

relative shorthand curve to

Q(F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F

quadratic bezier curve to

Q_(F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F

relative quadratic bezier curve to

T(F, F)

Tuple Fields

0: F
1: F

shorthand quadratic bezier curve to

T_(F, F)

Tuple Fields

0: F
1: F

relative shorthand quadratic bezier curve to

A(F, F, F, F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F
4: F
5: F
6: F

elliptical arc

A_(F, F, F, F, F, F, F)

Tuple Fields

0: F
1: F
2: F
3: F
4: F
5: F
6: F

relative elliptical arc

Z(F)

Tuple Fields

0: F

close path

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.