Struct sdl2_sys::SDL_WindowEvent
source · #[repr(C)]pub struct SDL_WindowEvent {
pub type_: Uint32,
pub timestamp: Uint32,
pub windowID: Uint32,
pub event: Uint8,
pub padding1: Uint8,
pub padding2: Uint8,
pub padding3: Uint8,
pub data1: Sint32,
pub data2: Sint32,
}
Expand description
\brief Window state change event data (event.window.*)
Fields§
§type_: Uint32
< ::SDL_WINDOWEVENT
timestamp: Uint32
< In milliseconds, populated using SDL_GetTicks()
windowID: Uint32
< The associated window
event: Uint8
< ::SDL_WindowEventID
padding1: Uint8
§padding2: Uint8
§padding3: Uint8
§data1: Sint32
< event dependent data
data2: Sint32
< event dependent data
Trait Implementations§
source§impl Clone for SDL_WindowEvent
impl Clone for SDL_WindowEvent
source§fn clone(&self) -> SDL_WindowEvent
fn clone(&self) -> SDL_WindowEvent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for SDL_WindowEvent
Auto Trait Implementations§
impl Freeze for SDL_WindowEvent
impl RefUnwindSafe for SDL_WindowEvent
impl Send for SDL_WindowEvent
impl Sync for SDL_WindowEvent
impl Unpin for SDL_WindowEvent
impl UnwindSafe for SDL_WindowEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more