Struct allocator_api::alloc::CannotReallocInPlace[][src]

pub struct CannotReallocInPlace;

The CannotReallocInPlace error is used when grow_in_place or shrink_in_place were unable to reuse the given memory block for a requested layout.

Methods

impl CannotReallocInPlace
[src]

Trait Implementations

impl Clone for CannotReallocInPlace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CannotReallocInPlace
[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 CannotReallocInPlace
[src]

impl Debug for CannotReallocInPlace
[src]

Formats the value using the given formatter. Read more

impl Display for CannotReallocInPlace
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations