Enum rinwindow::events::WindowEvent[][src]

pub enum WindowEvent {
    Moved {
        pos: Pnt2<i32>,
    },
    Resized {
        size: Vec2<i32>,
    },
    Closing,
}

Variants

Fields of Moved

Fields of Resized

Trait Implementations

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

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

This method tests for !=.

impl Eq for WindowEvent
[src]

Auto Trait Implementations

impl Send for WindowEvent

impl Sync for WindowEvent