#[repr(C)]pub struct MSGBOXPARAMSA {
pub cbSize: u32,
pub hwndOwner: HWND,
pub hInstance: HINSTANCE,
pub lpszText: PSTR,
pub lpszCaption: PSTR,
pub dwStyle: MESSAGEBOX_STYLE,
pub lpszIcon: PSTR,
pub dwContextHelpId: usize,
pub lpfnMsgBoxCallback: Option<unsafe extern "system" fn(_: *mut HELPINFO)>,
pub dwLanguageId: u32,
}
Fields§
§cbSize: u32
§hwndOwner: HWND
§hInstance: HINSTANCE
§lpszText: PSTR
§lpszCaption: PSTR
§dwStyle: MESSAGEBOX_STYLE
§lpszIcon: PSTR
§dwContextHelpId: usize
§lpfnMsgBoxCallback: Option<unsafe extern "system" fn(_: *mut HELPINFO)>
§dwLanguageId: u32
Trait Implementations§
Source§impl Clone for MSGBOXPARAMSA
impl Clone for MSGBOXPARAMSA
Source§fn clone(&self) -> MSGBOXPARAMSA
fn clone(&self) -> MSGBOXPARAMSA
Returns a copy 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 Debug for MSGBOXPARAMSA
impl Debug for MSGBOXPARAMSA
Source§impl Default for MSGBOXPARAMSA
impl Default for MSGBOXPARAMSA
Source§fn default() -> MSGBOXPARAMSA
fn default() -> MSGBOXPARAMSA
Returns the “default value” for a type. Read more
Source§impl PartialEq for MSGBOXPARAMSA
impl PartialEq for MSGBOXPARAMSA
impl Eq 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