Enum flo_ui::control::PaintDevice [] [src]

pub enum PaintDevice {
    Other,
    Mouse(MouseButton),
    Pen,
    Eraser,
    Touch,
}

The device that caused a painting event

Variants

Unknown paint device

Mouse with a particular button held down

Pen (with a particular stylus ID in case the user has multiple styluses)

Eraser (with a particular stylus ID in case the user has multiple styluses)

Finger input on a touch display

Trait Implementations

impl Clone for PaintDevice
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for PaintDevice
[src]

impl PartialEq for PaintDevice
[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 Hash for PaintDevice
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for PaintDevice
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for PaintDevice

impl Sync for PaintDevice