Enum lyon_core::events::SvgEvent [] [src]

pub enum SvgEvent {
    MoveTo(Point),
    RelativeMoveTo(Vec2),
    LineTo(Point),
    RelativeLineTo(Vec2),
    QuadraticTo(PointPoint),
    RelativeQuadraticTo(Vec2Vec2),
    CubicTo(PointPointPoint),
    RelativeCubicTo(Vec2Vec2Vec2),
    ArcTo(Vec2Radians<f32>, ArcFlagsPoint),
    RelativeArcTo(Vec2Radians<f32>, ArcFlagsVec2),
    HorizontalLineTo(f32),
    VerticalLineTo(f32),
    RelativeHorizontalLineTo(f32),
    RelativeVerticalLineTo(f32),
    SmoothQuadraticTo(Point),
    SmoothRelativeQuadraticTo(Vec2),
    SmoothCubicTo(PointPoint),
    SmoothRelativeCubicTo(Vec2Vec2),
    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 !=.