#[repr(C)]pub struct WNDCLASSEXW {
pub cbSize: UINT,
pub style: UINT,
pub lpfnWndProc: WNDPROC,
pub cbClsExtra: c_int,
pub cbWndExtra: c_int,
pub hInstance: HINSTANCE,
pub hIcon: HICON,
pub hCursor: HCURSOR,
pub hbrBackground: HBRUSH,
pub lpszMenuName: LPCWSTR,
pub lpszClassName: LPCWSTR,
pub hIconSm: HICON,
}
Fields§
§cbSize: UINT
§style: UINT
§lpfnWndProc: WNDPROC
§cbClsExtra: c_int
§cbWndExtra: c_int
§hInstance: HINSTANCE
§hIcon: HICON
§hCursor: HCURSOR
§hbrBackground: HBRUSH
§lpszMenuName: LPCWSTR
§lpszClassName: LPCWSTR
§hIconSm: HICON
Trait Implementations§
Source§impl Clone for WNDCLASSEXW
impl Clone for WNDCLASSEXW
Source§fn clone(&self) -> WNDCLASSEXW
fn clone(&self) -> WNDCLASSEXW
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 WNDCLASSEXW
impl Default for WNDCLASSEXW
Source§fn default() -> WNDCLASSEXW
fn default() -> WNDCLASSEXW
Returns the “default value” for a type. Read more
impl Copy for WNDCLASSEXW
Auto Trait Implementations§
impl Freeze for WNDCLASSEXW
impl RefUnwindSafe for WNDCLASSEXW
impl !Send for WNDCLASSEXW
impl !Sync for WNDCLASSEXW
impl Unpin for WNDCLASSEXW
impl UnwindSafe for WNDCLASSEXW
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