#[repr(C)]pub struct MSGBOXPARAMSW {
pub cbSize: UINT,
pub hwndOwner: HWND,
pub hInstance: HINSTANCE,
pub lpszText: LPCWSTR,
pub lpszCaption: LPCWSTR,
pub dwStyle: DWORD,
pub lpszIcon: LPCWSTR,
pub dwContextHelpId: DWORD_PTR,
pub lpfnMsgBoxCallback: MSGBOXCALLBACK,
pub dwLanguageId: DWORD,
}
Fields§
§cbSize: UINT
§hwndOwner: HWND
§hInstance: HINSTANCE
§lpszText: LPCWSTR
§lpszCaption: LPCWSTR
§dwStyle: DWORD
§lpszIcon: LPCWSTR
§dwContextHelpId: DWORD_PTR
§lpfnMsgBoxCallback: MSGBOXCALLBACK
§dwLanguageId: DWORD
Trait Implementations§
Source§impl Clone for MSGBOXPARAMSW
impl Clone for MSGBOXPARAMSW
Source§fn clone(&self) -> MSGBOXPARAMSW
fn clone(&self) -> MSGBOXPARAMSW
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 MSGBOXPARAMSW
impl Default for MSGBOXPARAMSW
Source§fn default() -> MSGBOXPARAMSW
fn default() -> MSGBOXPARAMSW
Returns the “default value” for a type. Read more
impl Copy for MSGBOXPARAMSW
Auto Trait Implementations§
impl Freeze for MSGBOXPARAMSW
impl RefUnwindSafe for MSGBOXPARAMSW
impl !Send for MSGBOXPARAMSW
impl !Sync for MSGBOXPARAMSW
impl Unpin for MSGBOXPARAMSW
impl UnwindSafe for MSGBOXPARAMSW
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