Enum oaidl::ElementError[][src]

pub enum ElementError {
    From(Box<FromSafeArrElemError>),
    Into(Box<IntoSafeArrElemError>),
}

Supererror type SafeArray element conversion errors

Variants

Holds FromSafeArrElemErrors

Holds IntoSafeArrElemErrors

Trait Implementations

impl Debug for ElementError
[src]

Formats the value using the given formatter. Read more

impl From<FromSafeArrElemError> for ElementError
[src]

Performs the conversion.

impl From<IntoSafeArrElemError> for ElementError
[src]

Performs the conversion.

Auto Trait Implementations