#[repr(C)]pub struct CREATESTRUCT {
pub lpCreateParams: *mut c_void,
pub hInstance: *mut c_void,
pub hMenu: *mut c_void,
pub hwndParent: *mut c_void,
pub cy: i32,
pub cx: i32,
pub y: i32,
pub x: i32,
pub style: i32,
pub lpszName: *const u16,
pub lpszClass: *const u16,
pub dwExStyle: u32,
}Expand description
C.11 CREATESTRUCT
contains initialization information that is passed to a new window’s window procedure
Fields§
§lpCreateParams: *mut c_void§hInstance: *mut c_void§hMenu: *mut c_void§hwndParent: *mut c_void§cy: i32§cx: i32§y: i32§x: i32§style: i32§lpszName: *const u16§lpszClass: *const u16§dwExStyle: u32Trait Implementations§
Source§impl Clone for CREATESTRUCTW
impl Clone for CREATESTRUCTW
Source§fn clone(&self) -> CREATESTRUCTW
fn clone(&self) -> CREATESTRUCTW
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 Default for CREATESTRUCTW
impl Default for CREATESTRUCTW
Source§fn default() -> CREATESTRUCTW
fn default() -> CREATESTRUCTW
Returns the “default value” for a type. Read more
impl Copy for CREATESTRUCTW
Auto Trait Implementations§
impl Freeze for CREATESTRUCTW
impl RefUnwindSafe for CREATESTRUCTW
impl !Send for CREATESTRUCTW
impl !Sync for CREATESTRUCTW
impl Unpin for CREATESTRUCTW
impl UnwindSafe for CREATESTRUCTW
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