#[repr(C)]pub struct WNDCLASSW {
pub style: WNDCLASS_STYLES,
pub lpfnWndProc: Option<unsafe extern "system" fn(HWND, u32, WPARAM, LPARAM) -> LRESULT>,
pub cbClsExtra: i32,
pub cbWndExtra: i32,
pub hInstance: HINSTANCE,
pub hIcon: HICON,
pub hCursor: HCURSOR,
pub hbrBackground: HBRUSH,
pub lpszMenuName: PCWSTR,
pub lpszClassName: PCWSTR,
}Fields§
§style: WNDCLASS_STYLES§lpfnWndProc: Option<unsafe extern "system" fn(HWND, u32, WPARAM, LPARAM) -> LRESULT>§cbClsExtra: i32§cbWndExtra: i32§hInstance: HINSTANCE§hIcon: HICON§hCursor: HCURSOR§hbrBackground: HBRUSH§lpszMenuName: PCWSTR§lpszClassName: PCWSTRAuto Trait Implementations§
impl !Send for WNDCLASSW
impl !Sync for WNDCLASSW
impl Freeze for WNDCLASSW
impl RefUnwindSafe for WNDCLASSW
impl Unpin for WNDCLASSW
impl UnsafeUnpin for WNDCLASSW
impl UnwindSafe for WNDCLASSW
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