Enum conrod::event::Event [] [src]

pub enum Event {
    Raw(Input),
    Ui(Ui),
}

Enum containing all the events that the Ui may provide.

Variants

Represents a raw input::Input event.

Events that have been interpreted from backend::RawEvents by the Ui.

Most events usually

Trait Implementations

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter.

impl From<Ui> for Event
[src]

[src]

Performs the conversion.

impl From<Input> for Event
[src]

[src]

Performs the conversion.