Enum oaidl::IntoVariantError[][src]

pub enum IntoVariantError {
    AllocBStrFailed(BStringError),
    SafeArrConvFailed(Box<SafeArrayError>),
}

Encapsulates errors that can occur during conversion into VARIANT

Variants

Encapsulates a BStringError

Encapsulates a SafeArrayError

Trait Implementations

impl From<BStringError> for IntoVariantError
[src]

Performs the conversion.

impl Debug for IntoVariantError
[src]

Formats the value using the given formatter. Read more

impl From<IntoVariantError> for IntoSafeArrElemError
[src]

Performs the conversion.

impl<I: Into<SafeArrayError>> From<I> for IntoVariantError
[src]

Performs the conversion.

Auto Trait Implementations