Enum oaidl::BStringError[][src]

pub enum BStringError {
    AllocateFailed {
        len: usize,
    },
}

Ways BString can fail. Currently just one way.

Variants

SysAllocStringLen failed

Fields of AllocateFailed

len which was used for allocation

Trait Implementations

impl Clone for BStringError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for BStringError
[src]

impl Debug for BStringError
[src]

Formats the value using the given formatter. Read more

impl From<BStringError> for IntoSafeArrElemError
[src]

Performs the conversion.

impl From<BStringError> for IntoVariantError
[src]

Performs the conversion.

Auto Trait Implementations