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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SvgEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SvgEvent
[src]

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

This method tests for !=.

impl Into<SvgEvent> for FlattenedEvent
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SvgEvent

impl Sync for SvgEvent