[][src]Struct fermium::events::SDL_SysWMmsg_windows

#[repr(C)]pub struct SDL_SysWMmsg_windows {
    pub hwnd: *mut c_void,
    pub msg: c_uint,
    pub wParam: usize,
    pub lParam: isize,
}

This is the data your Window Procedure would get.

Fields

hwnd: *mut c_void

The window for the message (HWND)

msg: c_uint

The type of message (UINT)

wParam: usize

WORD message parameter (WPARAM)

lParam: isize

LONG message parameter (LPARAM)

Trait Implementations

impl Clone for SDL_SysWMmsg_windows[src]

impl Copy for SDL_SysWMmsg_windows[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, 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.