Struct kiss3d::window::Event [] [src]

pub struct Event<'a> {
    pub timestamp: f64,
    pub value: WindowEvent,
    pub inhibited: bool,
    // some fields omitted
}

An event.

Fields

The event timestamp.

The exact glfw event value. This can be modified to fool the other event handlers.

Set this to true to prevent the window or the camera from handling the event.

Trait Implementations

impl<'a> Drop for Event<'a>
[src]

A method called when the value goes out of scope. Read more