#[repr(C)]pub struct ege_msg_createwindow {
pub hEvent: HANDLE,
pub hwnd: HWND,
pub classname: *const u16,
pub style: DWORD,
pub exstyle: DWORD,
pub id: usize,
pub param: LPVOID,
}Expand description
@struct msg_createwindow @brief Create window message structure
Message structure used to pass parameters when creating windows
Fields§
§hEvent: HANDLE< Event handle
hwnd: HWND< Window handle
classname: *const u16< Window class name
style: DWORD< Window style
exstyle: DWORD< Extended window style
id: usize< Window ID
param: LPVOID< Parameter pointer
Trait Implementations§
Source§impl Clone for ege_msg_createwindow
impl Clone for ege_msg_createwindow
Source§fn clone(&self) -> ege_msg_createwindow
fn clone(&self) -> ege_msg_createwindow
Returns a duplicate 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 moreSource§impl Debug for ege_msg_createwindow
impl Debug for ege_msg_createwindow
impl Copy for ege_msg_createwindow
Auto Trait Implementations§
impl Freeze for ege_msg_createwindow
impl RefUnwindSafe for ege_msg_createwindow
impl !Send for ege_msg_createwindow
impl !Sync for ege_msg_createwindow
impl Unpin for ege_msg_createwindow
impl UnwindSafe for ege_msg_createwindow
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