Enum flo_animation::BrushDefinition [] [src]

pub enum BrushDefinition {
    Simple,
    Ink(InkDefinition),
}

Stores the definition of a particular brush

Variants

The simple brush is usually only used for testing

An ink brush with a particular definition

Trait Implementations

impl Clone for BrushDefinition
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for BrushDefinition
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for BrushDefinition
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations