Struct conrod_core::input::global::Global[][src]

pub struct Global {
    pub start: State,
    pub current: State,
    pub last_click: Option<(Instant, Click)>,
    // some fields omitted
}
Expand description

Global input event handler that also implements input::Provider. The Ui passes all events to it’s Global instance, which aggregates and interprets the events to provide so-called ‘high-level’ events to widgets. This input gets reset after every update by the Ui.

Fields

start: State

The input::State as it was at the end of the last update cycle.

current: State

The most recent input::State, with updates from handling all the events this update cycle

last_click: Option<(Instant, Click)>

Tracks the last click that occurred and the time at which it occurred in order to create double-click events.

Implementations

Returns a fresh new Global

Returns an iterator yielding all events that have occurred since the last time Ui::set_widgets was called.

Add the new event to the stack.

Called at the end of every update cycle in order to prepare the Global to handle events for the next one.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.