Enum lyon_path::Verb [] [src]

pub enum Verb {
    MoveTo,
    LineTo,
    QuadraticTo,
    CubicTo,
    Close,
}

Enumeration corresponding to the PathEvent enum without the parameters.

This is used by the Path data structure to store path events a tad more efficiently.

Variants

Trait Implementations

impl Copy for Verb
[src]

impl Clone for Verb
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Verb
[src]

Formats the value using the given formatter.

impl PartialEq for Verb
[src]

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

This method tests for !=.

impl Eq for Verb
[src]