fn StackFallbackAllocator(comptime size: usize) type
[src]
An allocator that attempts to allocate using a FixedBufferAllocator
using an array of size size
. If the allocation fails, it will fall back to using fallback_allocator
. Easily created with stackFallback
.