Enum allocator_api::alloc::CollectionAllocErr[][src]

pub enum CollectionAllocErr {
    CapacityOverflow,
    AllocErr,
}

Augments AllocErr with a CapacityOverflow variant.

Variants

Error due to the computed capacity exceeding the collection's maximum (usually isize::MAX bytes).

Error due to the allocator (see the AllocErr type's docs).

Trait Implementations

impl Clone for CollectionAllocErr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CollectionAllocErr
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CollectionAllocErr
[src]

impl Debug for CollectionAllocErr
[src]

Formats the value using the given formatter. Read more

impl From<AllocErr> for CollectionAllocErr
[src]

Performs the conversion.

impl From<LayoutErr> for CollectionAllocErr
[src]

Performs the conversion.

Auto Trait Implementations