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