Enum variant_rs::dispatch::IDispatchError
source · pub enum IDispatchError {
VariantConversion(VariantConversionError),
StringConversion(ContainsNul<u16>),
GenericWin32(WinError),
Exception(EXCEPINFO),
Argument(ComArgumentError, usize),
}
Variants§
VariantConversion(VariantConversionError)
StringConversion(ContainsNul<u16>)
GenericWin32(WinError)
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)>
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.