pub struct AllocatorApiGlue<'a, 'b, const CHUNK_SIZE: usize>(_);
Expand description

Helper struct generated by GlobalChunkAllocator that can be used in structs that accept a custom instance of a specific allocator implementation.

This is mainly relevant for testing the allocator. In a real environment, an instance of GlobalChunkAllocator is likely registered a global allocator for Rust. Thus, Vec and others default to the Global allocator, which will use GlobalChunkAllocator.

Example

// ...
ALLOCATOR.init(HEAP_MEM.as_mut_slice(), BITMAP_MEM.as_mut_slice()).unwrap()

// Vector from the standard library will use my custom allocator instead.
let vec = Vec::<u8, _>::with_capacity_in(123, ALLOCATOR.allocator_api_glue());

Trait Implementations

🔬 This is a nightly-only experimental API. (allocator_api)

Attempts to allocate a block of memory. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Deallocates the memory referenced by ptr. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Behaves like allocate, but also ensures that the returned memory is zero-initialized. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Attempts to extend the memory block. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Behaves like grow, but also ensures that the new contents are set to zero before being returned. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Attempts to shrink the memory block. Read more

🔬 This is a nightly-only experimental API. (allocator_api)

Creates a “by reference” adapter for this instance of Allocator. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.