Enum lyon_path::SvgEvent [] [src]

pub enum SvgEvent {
    MoveTo(Point),
    RelativeMoveTo(Vector),
    LineTo(Point),
    RelativeLineTo(Vector),
    QuadraticTo(PointPoint),
    RelativeQuadraticTo(VectorVector),
    CubicTo(PointPointPoint),
    RelativeCubicTo(VectorVectorVector),
    ArcTo(VectorAngleArcFlagsPoint),
    RelativeArcTo(VectorAngleArcFlagsVector),
    HorizontalLineTo(f32),
    VerticalLineTo(f32),
    RelativeHorizontalLineTo(f32),
    RelativeVerticalLineTo(f32),
    SmoothQuadraticTo(Point),
    SmoothRelativeQuadraticTo(Vector),
    SmoothCubicTo(PointPoint),
    SmoothRelativeCubicTo(VectorVector),
    Close,
}

Variants

Trait Implementations

impl Copy for SvgEvent
[src]

impl Clone for SvgEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SvgEvent
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for SvgEvent
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.