[][src]Enum sdl2::event::WindowEvent

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

None
Shown
Hidden
Exposed
Moved(i32i32)
Resized(i32i32)
SizeChanged(i32i32)
Minimized
Maximized
Restored
Enter
Leave
FocusGained
FocusLost
Close
TakeFocus
HitTest

Trait Implementations

impl Clone for WindowEvent[src]

impl Copy for WindowEvent[src]

impl Debug for WindowEvent[src]

impl Eq for WindowEvent[src]

impl Hash for WindowEvent[src]

impl PartialEq<WindowEvent> for WindowEvent[src]

impl StructuralEq for WindowEvent[src]

impl StructuralPartialEq for WindowEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.