#[repr(C)]pub struct CREATESTRUCTA {
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: LPCSTR,
pub lpszClass: LPCSTR,
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: LPCSTR
§lpszClass: LPCSTR
§dwExStyle: DWORD
Trait Implementations§
Source§impl Clone for CREATESTRUCTA
impl Clone for CREATESTRUCTA
Source§fn clone(&self) -> CREATESTRUCTA
fn clone(&self) -> CREATESTRUCTA
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 CREATESTRUCTA
impl Default for CREATESTRUCTA
Source§fn default() -> CREATESTRUCTA
fn default() -> CREATESTRUCTA
Returns the “default value” for a type. Read more
impl Copy for CREATESTRUCTA
Auto Trait Implementations§
impl Freeze for CREATESTRUCTA
impl RefUnwindSafe for CREATESTRUCTA
impl !Send for CREATESTRUCTA
impl !Sync for CREATESTRUCTA
impl Unpin for CREATESTRUCTA
impl UnwindSafe for CREATESTRUCTA
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