Enum oaidl::SafeArrayError[][src]

pub enum SafeArrayError {
    From(Box<FromSafeArrayError>),
    Into(Box<IntoSafeArrayError>),
}

Supererror for SafeArray errors

Variants

From wrapper for FromSafeArrayError

Into wrapper for IntoSafeArrayError

Trait Implementations

impl Debug for SafeArrayError
[src]

Formats the value using the given formatter. Read more

impl From<FromSafeArrayError> for SafeArrayError
[src]

Performs the conversion.

impl From<IntoSafeArrayError> for SafeArrayError
[src]

Performs the conversion.

Auto Trait Implementations