pub enum IDispatchError {
VariantConversion(VariantConversionError),
StringConversion(ContainsNul<u16>),
GenericWin32(Error),
Exception(EXCEPINFO),
Argument(ComArgumentError, usize),
}
Variants§
VariantConversion(VariantConversionError)
StringConversion(ContainsNul<u16>)
GenericWin32(Error)
Exception(EXCEPINFO)
Argument(ComArgumentError, usize)
Trait Implementations§
Source§impl Debug for IDispatchError
impl Debug for IDispatchError
Source§impl Display for IDispatchError
impl Display for IDispatchError
Source§impl Error for IDispatchError
impl Error for IDispatchError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ContainsNul<u16>> for IDispatchError
impl From<ContainsNul<u16>> for IDispatchError
Source§fn from(source: ContainsNul<u16>) -> Self
fn from(source: ContainsNul<u16>) -> Self
Converts to this type from the input type.
Source§impl From<Error> for IDispatchError
impl From<Error> for IDispatchError
Source§impl From<VariantConversionError> for IDispatchError
impl From<VariantConversionError> for IDispatchError
Source§fn from(source: VariantConversionError) -> Self
fn from(source: VariantConversionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IDispatchError
impl RefUnwindSafe for IDispatchError
impl !Send for IDispatchError
impl !Sync for IDispatchError
impl Unpin for IDispatchError
impl UnwindSafe for IDispatchError
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