Enum lyon_path::QuadraticEvent[][src]

pub enum QuadraticEvent {
    MoveTo(Point),
    LineTo(Point),
    QuadraticTo(PointPoint),
    Close,
}

Variants

Methods

impl QuadraticEvent
[src]

Trait Implementations

impl Copy for QuadraticEvent
[src]

impl Clone for QuadraticEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QuadraticEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for QuadraticEvent
[src]

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

This method tests for !=.

impl Transform for QuadraticEvent
[src]

Auto Trait Implementations