#[repr(C)]pub struct tagEXCEPINFO {
pub wCode: WORD,
pub wReserved: WORD,
pub bstrSource: BSTR,
pub bstrDescription: BSTR,
pub bstrHelpFile: BSTR,
pub dwHelpContext: DWORD,
pub pvReserved: PVOID,
pub pfnDeferredFillIn: Option<unsafe extern "C" fn(arg1: *mut tagEXCEPINFO) -> HRESULT>,
pub scode: SCODE,
}
Fields§
§wCode: WORD
§wReserved: WORD
§bstrSource: BSTR
§bstrDescription: BSTR
§bstrHelpFile: BSTR
§dwHelpContext: DWORD
§pvReserved: PVOID
§pfnDeferredFillIn: Option<unsafe extern "C" fn(arg1: *mut tagEXCEPINFO) -> HRESULT>
§scode: SCODE
Trait Implementations§
Source§impl Clone for tagEXCEPINFO
impl Clone for tagEXCEPINFO
Source§fn clone(&self) -> tagEXCEPINFO
fn clone(&self) -> tagEXCEPINFO
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 tagEXCEPINFO
impl Debug for tagEXCEPINFO
Source§impl Ord for tagEXCEPINFO
impl Ord for tagEXCEPINFO
Source§fn cmp(&self, other: &tagEXCEPINFO) -> Ordering
fn cmp(&self, other: &tagEXCEPINFO) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for tagEXCEPINFO
impl PartialEq for tagEXCEPINFO
Source§impl PartialOrd for tagEXCEPINFO
impl PartialOrd for tagEXCEPINFO
impl Copy for tagEXCEPINFO
impl Eq for tagEXCEPINFO
impl StructuralPartialEq for tagEXCEPINFO
Auto Trait Implementations§
impl Freeze for tagEXCEPINFO
impl RefUnwindSafe for tagEXCEPINFO
impl !Send for tagEXCEPINFO
impl !Sync for tagEXCEPINFO
impl Unpin for tagEXCEPINFO
impl UnwindSafe for tagEXCEPINFO
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