Enum lyon_path::FlattenedEvent[][src]

pub enum FlattenedEvent {
    MoveTo(Point),
    LineTo(Point),
    Close,
}

Variants

Methods

impl FlattenedEvent
[src]

Trait Implementations

impl Copy for FlattenedEvent
[src]

impl Clone for FlattenedEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FlattenedEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for FlattenedEvent
[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 Into<SvgEvent> for FlattenedEvent
[src]

Performs the conversion.

impl Transform for FlattenedEvent
[src]

Auto Trait Implementations