Struct windows_win::sys::CREATESTRUCTW
source · #[repr(C)]pub struct CREATESTRUCTW {
pub lpCreateParams: LPVOID,
pub hInstance: HINSTANCE,
pub hMenu: HMENU,
pub hwndParent: HWND,
pub cy: c_int,
pub cx: c_int,
pub y: c_int,
pub x: c_int,
pub style: LONG,
pub lpszName: LPCWSTR,
pub lpszClass: LPCWSTR,
pub dwExStyle: DWORD,
}
Fields§
§lpCreateParams: LPVOID
§hInstance: HINSTANCE
§hMenu: HMENU
§hwndParent: HWND
§cy: c_int
§cx: c_int
§y: c_int
§x: c_int
§style: LONG
§lpszName: LPCWSTR
§lpszClass: LPCWSTR
§dwExStyle: DWORD
Trait Implementations§
source§impl Clone for CREATESTRUCTW
impl Clone for CREATESTRUCTW
source§fn clone(&self) -> CREATESTRUCTW
fn clone(&self) -> CREATESTRUCTW
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 CREATESTRUCTW
Auto Trait Implementations§
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