Enum cuivre::WindowEvent[][src]

pub enum WindowEvent {
    None,
    Shown,
    Hidden,
    Exposed,
    Moved(i32i32),
    Resized(i32i32),
    SizeChanged(i32i32),
    Minimized,
    Maximized,
    Restored,
    Enter,
    Leave,
    FocusGained,
    FocusLost,
    Close,
    TakeFocus,
    HitTest,
}

An enum of window events.

Variants

Trait Implementations

impl Hash for WindowEvent
[src]

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

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

impl Clone for WindowEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WindowEvent
[src]

Formats the value using the given formatter. Read more

impl Copy for WindowEvent
[src]

impl Eq for WindowEvent
[src]

impl PartialEq<WindowEvent> for WindowEvent
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for WindowEvent

impl Sync for WindowEvent