Enum lyon_path::PathEvent[][src]

pub enum PathEvent {
    MoveTo(Point),
    LineTo(Point),
    QuadraticTo(PointPoint),
    CubicTo(PointPointPoint),
    Arc(PointVectorAngleAngle),
    Close,
}

Variants

Trait Implementations

impl Copy for PathEvent
[src]

impl Clone for PathEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PathEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for PathEvent
[src]

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

This method tests for !=.

impl Into<PathEvent> for FlattenedEvent
[src]

Performs the conversion.

impl Transform for PathEvent
[src]

Auto Trait Implementations

impl Send for PathEvent

impl Sync for PathEvent