#[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<MSGBOXCALLBACK>,
pub dwLanguageId: u32,
}Fields§
§cbSize: u32§hwndOwner: HWND§hInstance: HINSTANCE§lpszText: PSTR§lpszCaption: PSTR§dwStyle: MESSAGEBOX_STYLE§lpszIcon: PSTR§dwContextHelpId: usize§lpfnMsgBoxCallback: Option<MSGBOXCALLBACK>§dwLanguageId: u32Trait Implementations§
Source§impl Abi for MSGBOXPARAMSA
impl Abi for MSGBOXPARAMSA
Source§type Abi = MSGBOXPARAMSA
type Abi = MSGBOXPARAMSA
The abi representation of the implementing type. Read more
Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
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 Debug for MSGBOXPARAMSA
impl Debug for MSGBOXPARAMSA
Source§impl Default for MSGBOXPARAMSA
impl Default for MSGBOXPARAMSA
Source§impl PartialEq for MSGBOXPARAMSA
impl PartialEq for MSGBOXPARAMSA
impl Copy 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