Struct MSGBOXPARAMSA
#[repr(C)]pub struct MSGBOXPARAMSA {
pub cbSize: u32,
pub hwndOwner: HWND,
pub hInstance: HINSTANCE,
pub lpszText: PCSTR,
pub lpszCaption: PCSTR,
pub dwStyle: MESSAGEBOX_STYLE,
pub lpszIcon: PCSTR,
pub dwContextHelpId: usize,
pub lpfnMsgBoxCallback: MSGBOXCALLBACK,
pub dwLanguageId: u32,
}Fields§
§cbSize: u32§hwndOwner: HWND§hInstance: HINSTANCE§lpszText: PCSTR§lpszCaption: PCSTR§dwStyle: MESSAGEBOX_STYLE§lpszIcon: PCSTR§dwContextHelpId: usize§lpfnMsgBoxCallback: MSGBOXCALLBACK§dwLanguageId: u32Trait Implementations§
§impl Clone for MSGBOXPARAMSA
impl Clone for MSGBOXPARAMSA
§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 more§impl Default for MSGBOXPARAMSA
Available on crate feature Win32_UI_Shell only.
impl Default for MSGBOXPARAMSA
Available on crate feature
Win32_UI_Shell only.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