pub struct Bump<A = Global, const MIN_ALIGN: usize = 1, const UP: bool = true, const GUARANTEED_ALLOCATED: bool = true, const DEALLOCATES: bool = true>{ /* private fields */ }Expand description
The bump allocator.
§Generic parameters
Athe base allocator, defaults toGlobalwhen theallocfeature is enabledMIN_ALIGNthe alignment maintained for the bump pointer, see What is minimum alignment?UPthe bump direction, see Bumping upwards or downwards?GUARANTEED_ALLOCATEDsee What does guaranteed allocated mean?DEALLOCATEStoggles deallocation and shrinking for collections,alloc_iterandalloc_(cstr_)fmt
§Overview
All of the mentioned methods that do allocations panic if the base allocator returned an error.
For every such panicking method, there is a corresponding try_-prefixed version that returns a Result instead.
§Create a Bump …
- with a default size hint:
new(_in)/default - provide a size hint:
with_size(_in) - provide a minimum capacity:
with_capacity(_in) - without allocation:
unallocated
§Allocate …
-
sized values:
alloc,alloc_with,alloc_default,alloc_zeroed -
c strings:
alloc_cstr,alloc_cstr_from_str,alloc_cstr_fmt(_mut) -
slices:
alloc_slice_{copy, clone, move, fill, fill_with},alloc_zeroed_slice -
slices from an iterator:
alloc_iter,alloc_iter_exact,alloc_iter_mut,alloc_iter_mut_rev -
uninitialized values:
alloc_uninit,alloc_uninit_slice,alloc_uninit_slice_forwhich can then be conveniently initialized by the
init*methods ofBumpBox. -
results:
alloc_try_with,alloc_try_with_mut -
via clone (nightly only):
alloc_clone
§Free memory using …
- scopes:
scoped,scoped_aligned,scope_guard - checkpoints:
checkpoint,reset_to - reset:
reset - dealloc:
dealloc
§Configure allocator settings …
- guaranteed allocated:
{as, as_mut, into}_guaranteed_allocated,{as, into}_not_guaranteed_allocated - minimum alignment:
aligned,as_mut_aligned,into_aligned - deallocation:
{as, as_mut, into}_with_dealloc{as, as_mut, into}_without_dealloc
§Collections
A Bump (and BumpScope) can be used to allocate collections of this crate…
use bump_scope::{Bump, BumpString};
let bump: Bump = Bump::new();
let mut string = BumpString::new_in(&bump);
string.push_str("Hello,");
string.push_str(" world!");… and collections from crates that use allocator_api2’s Allocator like hashbrown’s HashMap:
This requires the allocator-api2-02 feature OR the nightly-allocator-api feature along with hashbrown’s nightly feature.
use bump_scope::Bump;
use hashbrown::HashMap;
let bump: Bump = Bump::new();
let mut map = HashMap::new_in(&bump);
map.insert("tau", 6.283);On nightly and with the feature nightly-allocator-api you can also allocate collections from std that have an allocator parameter:
#![feature(allocator_api, btreemap_alloc)]
use bump_scope::Bump;
use std::collections::{VecDeque, BTreeMap, LinkedList};
let bump: Bump = Bump::new();
let vec = Vec::new_in(&bump);
let queue = VecDeque::new_in(&bump);
let map = BTreeMap::new_in(&bump);
let list = LinkedList::new_in(&bump);§Gotcha
Having live allocations and entering bump scopes at the same time requires a BumpScope.
This is due to the way lifetimes work, since Bump returns allocations with the lifetime
of its own borrow instead of a separate lifetime like BumpScope does.
So you can’t do this:
let mut bump: Bump = Bump::new();
let one = bump.alloc(1);
bump.scoped(|bump| {
// whatever
});But you can make the code work by converting the Bump it to a BumpScope first using as_mut_scope:
let mut bump: Bump = Bump::new();
let bump = bump.as_mut_scope();
let one = bump.alloc(1);
bump.scoped(|bump| {
// whatever
});Implementations§
Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Methods for a Bump with a default base allocator.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Methods for a Bump with a default base allocator.
Sourcepub fn try_new() -> Result<Self, AllocError>
pub fn try_new() -> Result<Self, AllocError>
Constructs a new Bump with a default size hint for the first chunk.
This is equivalent to try_with_size(512).
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
let bump: Bump = Bump::try_new()?;Sourcepub fn with_size(size: usize) -> Self
pub fn with_size(size: usize) -> Self
Constructs a new Bump with a size hint for the first chunk.
If you want to ensure a specific capacity, use with_capacity instead.
An effort is made to ensure the size requested from the base allocator is friendly to an allocator that uses size classes and stores metadata alongside allocations.
To achieve this, the requested size is rounded up to either the next power of two or the next multiple of 0x1000, whichever is smaller.
After that, the size of [usize; 2] is subtracted.
If the base allocator returns a memory block that is larger than requested, then the chunk will use the extra space.
Disclaimer: The way in which the chunk layout is calculated might change. Such a change is not considered semver breaking.
§Panics
Panics if the allocation fails.
§Examples
use bump_scope::Bump;
// `Bump` with a roughly 1 Mebibyte sized chunk
let bump_1mib: Bump = Bump::with_size(1024 * 1024);Sourcepub fn try_with_size(size: usize) -> Result<Self, AllocError>
pub fn try_with_size(size: usize) -> Result<Self, AllocError>
Constructs a new Bump with a size hint for the first chunk.
If you want to ensure a specific capacity, use try_with_capacity instead.
An effort is made to ensure the size requested from the base allocator is friendly to an allocator that uses size classes and stores metadata alongside allocations.
To achieve this, the requested size is rounded up to either the next power of two or the next multiple of 0x1000, whichever is smaller.
After that, the size of [usize; 2] is subtracted.
If the base allocator returns a memory block that is larger than requested, then the chunk will use the extra space.
Disclaimer: The way in which the chunk layout is calculated might change. Such a change is not considered semver breaking.
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
// `Bump` with a roughly 1 Mebibyte sized chunk
let bump_1mib: Bump = Bump::try_with_size(1024 * 1024)?;Sourcepub fn with_capacity(layout: Layout) -> Self
pub fn with_capacity(layout: Layout) -> Self
Constructs a new Bump with at least enough space for layout.
To construct a Bump with a size hint use with_size instead.
§Panics
Panics if the allocation fails.
§Examples
use bump_scope::Bump;
use core::alloc::Layout;
let layout = Layout::array::<u8>(1234).unwrap();
let bump: Bump = Bump::with_capacity(layout);
assert!(bump.stats().capacity() >= layout.size());Sourcepub fn try_with_capacity(layout: Layout) -> Result<Self, AllocError>
pub fn try_with_capacity(layout: Layout) -> Result<Self, AllocError>
Constructs a new Bump with at least enough space for layout.
To construct a Bump with a size hint use try_with_size instead.
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
use core::alloc::Layout;
let layout = Layout::array::<u8>(1234).unwrap();
let bump: Bump = Bump::try_with_capacity(layout)?;
assert!(bump.stats().capacity() >= layout.size());Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
Methods for a guaranteed allocated Bump.
impl<A, const MIN_ALIGN: usize, const UP: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
Methods for a guaranteed allocated Bump.
Sourcepub fn scoped<R>(
&mut self,
f: impl FnOnce(BumpScope<'_, A, MIN_ALIGN, UP, true, DEALLOCATES>) -> R,
) -> R
pub fn scoped<R>( &mut self, f: impl FnOnce(BumpScope<'_, A, MIN_ALIGN, UP, true, DEALLOCATES>) -> R, ) -> R
Calls f with a new child scope.
§Examples
let mut bump: Bump = Bump::new();
bump.scoped(|bump| {
bump.alloc_str("Hello, world!");
assert_eq!(bump.stats().allocated(), 13);
});
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn scoped_aligned<const NEW_MIN_ALIGN: usize, R>(
&mut self,
f: impl FnOnce(BumpScope<'_, A, NEW_MIN_ALIGN, UP, true, DEALLOCATES>) -> R,
) -> Rwhere
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
pub fn scoped_aligned<const NEW_MIN_ALIGN: usize, R>(
&mut self,
f: impl FnOnce(BumpScope<'_, A, NEW_MIN_ALIGN, UP, true, DEALLOCATES>) -> R,
) -> Rwhere
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
Calls f with a new child scope of a new minimum alignment.
§Examples
let mut bump: Bump = Bump::new();
// bump starts off by being aligned to 16
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(16));
// allocate one byte
bump.alloc(1u8);
// now the bump is only aligned to 1
// (if our `MIN_ALIGN` was higher, it would be that)
assert!(bump.stats().current_chunk().bump_position().addr().get() % 2 == 1);
assert_eq!(bump.stats().allocated(), 1);
bump.scoped_aligned::<8, ()>(|bump| {
// in here, the bump will have the specified minimum alignment of 8
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(8));
assert_eq!(bump.stats().allocated(), 8);
// allocating a value with its size being a multiple of 8 will no longer have
// to align the bump pointer before allocation
bump.alloc(1u64);
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(8));
assert_eq!(bump.stats().allocated(), 16);
// allocating a value smaller than the minimum alignment must align the bump pointer
// after the allocation, resulting in some wasted space
bump.alloc(1u8);
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(8));
assert_eq!(bump.stats().allocated(), 24);
});
assert_eq!(bump.stats().allocated(), 1);Sourcepub fn aligned<'a, const NEW_MIN_ALIGN: usize, R>(
&'a mut self,
f: impl FnOnce(BumpScope<'a, A, NEW_MIN_ALIGN, UP, true, DEALLOCATES>) -> R,
) -> Rwhere
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
pub fn aligned<'a, const NEW_MIN_ALIGN: usize, R>(
&'a mut self,
f: impl FnOnce(BumpScope<'a, A, NEW_MIN_ALIGN, UP, true, DEALLOCATES>) -> R,
) -> Rwhere
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
Calls f with this scope but with a new minimum alignment.
§Examples
Increase the minimum alignment:
let mut bump: Bump = Bump::new();
let bump = bump.as_mut_scope();
// here we're allocating with a `MIN_ALIGN` of `1`
let foo = bump.alloc_str("foo");
assert_eq!(bump.stats().allocated(), 3);
let bar = bump.aligned::<8, _>(|bump| {
// in here the bump position has been aligned to `8`
assert_eq!(bump.stats().allocated(), 8);
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(8));
// make some allocations that benefit from the higher `MIN_ALIGN` of `8`
let bar = bump.alloc(0u64);
assert_eq!(bump.stats().allocated(), 16);
// the bump position will stay aligned to `8`
bump.alloc(0u8);
assert_eq!(bump.stats().allocated(), 24);
bar
});
assert_eq!(bump.stats().allocated(), 24);
// continue making allocations with a `MIN_ALIGN` of `1`
let baz = bump.alloc_str("baz");
assert_eq!(bump.stats().allocated(), 24 + 3);
dbg!(foo, bar, baz);Decrease the minimum alignment:
let mut bump: Bump<Global, 8> = Bump::new();
let bump = bump.as_mut_scope();
// make some allocations that benefit from the `MIN_ALIGN` of `8`
let foo = bump.alloc(0u64);
let bar = bump.aligned::<1, _>(|bump| {
// make some allocations that benefit from the lower `MIN_ALIGN` of `1`
let bar = bump.alloc(0u8);
// the bump position will not get aligned to `8` in here
assert_eq!(bump.stats().allocated(), 8 + 1);
bar
});
// after `aligned()`, the bump position will be aligned to `8` again
// to satisfy our `MIN_ALIGN`
assert!(bump.stats().current_chunk().bump_position().is_aligned_to(8));
assert_eq!(bump.stats().allocated(), 16);
// continue making allocations that benefit from the `MIN_ALIGN` of `8`
let baz = bump.alloc(0u64);
dbg!(foo, bar, baz);Sourcepub fn scope_guard(
&mut self,
) -> BumpScopeGuardRoot<'_, A, MIN_ALIGN, UP, DEALLOCATES>
pub fn scope_guard( &mut self, ) -> BumpScopeGuardRoot<'_, A, MIN_ALIGN, UP, DEALLOCATES>
Creates a new BumpScopeGuardRoot.
This allows for creation of child scopes.
§Examples
let mut bump: Bump = Bump::new();
{
let mut guard = bump.scope_guard();
let bump = guard.scope();
bump.alloc_str("Hello, world!");
assert_eq!(bump.stats().allocated(), 13);
}
assert_eq!(bump.stats().allocated(), 0);Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>
Methods for a not guaranteed allocated Bump.
impl<A, const MIN_ALIGN: usize, const UP: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>
Methods for a not guaranteed allocated Bump.
Sourcepub const fn unallocated() -> Self
pub const fn unallocated() -> Self
Constructs a new Bump without allocating a chunk.
See What does guaranteed allocated mean?.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
let bump: Bump<Global, 1, true, false> = Bump::unallocated();Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Methods that are always available.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Methods that are always available.
Sourcepub fn checkpoint(&self) -> Checkpoint
pub fn checkpoint(&self) -> Checkpoint
Creates a checkpoint of the current bump position.
The bump position can be reset to this checkpoint with reset_to.
§Examples
let bump: Bump = Bump::new();
let checkpoint = bump.checkpoint();
{
let hello = bump.alloc_str("hello");
assert_eq!(bump.stats().allocated(), 5);
}
unsafe { bump.reset_to(checkpoint); }
assert_eq!(bump.stats().allocated(), 0);Sourcepub unsafe fn reset_to(&self, checkpoint: Checkpoint)
pub unsafe fn reset_to(&self, checkpoint: Checkpoint)
Resets the bump position to a previously created checkpoint. The memory that has been allocated since then will be reused by future allocations.
§Safety
- the checkpoint must have been created by this bump allocator
- the bump allocator must not have been
resetsince creation of this checkpoint - there must be no references to allocations made since creation of this checkpoint
- the checkpoint must not have been created by an
!GUARANTEED_ALLOCATEDwhen self isGUARANTEED_ALLOCATED
§Examples
let bump: Bump = Bump::new();
let checkpoint = bump.checkpoint();
{
let hello = bump.alloc_str("hello");
assert_eq!(bump.stats().allocated(), 5);
}
unsafe { bump.reset_to(checkpoint); }
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn new_in(allocator: A) -> Self
pub fn new_in(allocator: A) -> Self
Constructs a new Bump with a default size hint for the first chunk.
This is equivalent to with_size_in(512, allocator).
§Panics
Panics if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
let bump: Bump = Bump::new_in(Global);Sourcepub fn try_new_in(allocator: A) -> Result<Self, AllocError>
pub fn try_new_in(allocator: A) -> Result<Self, AllocError>
Constructs a new Bump with a default size hint for the first chunk.
This is equivalent to try_with_size_in(512, allocator).
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
let bump: Bump = Bump::try_new_in(Global)?;Sourcepub fn with_size_in(size: usize, allocator: A) -> Self
pub fn with_size_in(size: usize, allocator: A) -> Self
Constructs a new Bump with a size hint for the first chunk.
If you want to ensure a specific capacity, use with_capacity_in instead.
An effort is made to ensure the size requested from the base allocator is friendly to an allocator that uses size classes and stores metadata alongside allocations.
To achieve this, the requested size is rounded up to either the next power of two or the next multiple of 0x1000, whichever is smaller.
After that, the size of [usize; 2] is subtracted.
If the base allocator returns a memory block that is larger than requested, then the chunk will use the extra space.
Disclaimer: The way in which the chunk layout is calculated might change. Such a change is not considered semver breaking.
§Panics
Panics if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
// `Bump` with a roughly 1 Mebibyte sized chunk
let bump_1mib: Bump = Bump::with_size_in(1024 * 1024, Global);Sourcepub fn try_with_size_in(size: usize, allocator: A) -> Result<Self, AllocError>
pub fn try_with_size_in(size: usize, allocator: A) -> Result<Self, AllocError>
Constructs a new Bump with a size hint for the first chunk.
If you want to ensure a specific capacity, use try_with_capacity instead.
An effort is made to ensure the size requested from the base allocator is friendly to an allocator that uses size classes and stores metadata alongside allocations.
To achieve this, the requested size is rounded up to either the next power of two or the next multiple of 0x1000, whichever is smaller.
After that, the size of [usize; 2] is subtracted.
If the base allocator returns a memory block that is larger than requested, then the chunk will use the extra space.
Disclaimer: The way in which the chunk layout is calculated might change. Such a change is not considered semver breaking.
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
// `Bump` with a roughly 1 Mebibyte sized chunk
let bump_1mib: Bump = Bump::try_with_size_in(1024 * 1024, Global)?;Sourcepub fn with_capacity_in(layout: Layout, allocator: A) -> Self
pub fn with_capacity_in(layout: Layout, allocator: A) -> Self
Constructs a new Bump with at least enough space for layout.
To construct a Bump with a size hint use with_size_in instead.
§Panics
Panics if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
use core::alloc::Layout;
let layout = Layout::array::<u8>(1234).unwrap();
let bump: Bump = Bump::with_capacity_in(layout, Global);
assert!(bump.stats().capacity() >= layout.size());Sourcepub fn try_with_capacity_in(
layout: Layout,
allocator: A,
) -> Result<Self, AllocError>
pub fn try_with_capacity_in( layout: Layout, allocator: A, ) -> Result<Self, AllocError>
Constructs a new Bump with at least enough space for layout.
To construct a Bump with a size hint use try_with_size_in instead.
§Errors
Errors if the allocation fails.
§Examples
use bump_scope::Bump;
use bump_scope::alloc::Global;
use core::alloc::Layout;
let layout = Layout::array::<u8>(1234).unwrap();
let bump: Bump = Bump::try_with_capacity_in(layout, Global)?;
assert!(bump.stats().capacity() >= layout.size());Sourcepub fn reset(&mut self)
pub fn reset(&mut self)
Deallocates every chunk but the newest, which is also the biggest.
use bump_scope::Bump;
let mut bump: Bump = Bump::new();
// won't fit in the default sized first chunk
bump.alloc_uninit_slice::<u8>(600);
let chunks = bump.stats().small_to_big().collect::<Vec<_>>();
assert_eq!(chunks.len(), 2);
assert!(chunks[0].size() < chunks[1].size());
assert_eq!(chunks[0].allocated(), 0);
assert_eq!(chunks[1].allocated(), 600);
let last_chunk_size = chunks[1].size();
bump.reset();
let chunks = bump.stats().small_to_big().collect::<Vec<_>>();
assert_eq!(chunks.len(), 1);
assert_eq!(chunks[0].size(), last_chunk_size);
assert_eq!(chunks[0].allocated(), 0);Sourcepub fn stats(&self) -> Stats<'_, A, UP, GUARANTEED_ALLOCATED>
pub fn stats(&self) -> Stats<'_, A, UP, GUARANTEED_ALLOCATED>
Returns a type which provides statistics about the memory usage of the bump allocator.
Sourcepub fn as_scope(
&self,
) -> &BumpScope<'_, A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
pub fn as_scope( &self, ) -> &BumpScope<'_, A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Returns this &Bump as a &BumpScope.
Sourcepub fn as_mut_scope(
&mut self,
) -> &mut BumpScope<'_, A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
pub fn as_mut_scope( &mut self, ) -> &mut BumpScope<'_, A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>
Returns this &mut Bump as a &mut BumpScope.
Sourcepub fn into_aligned<const NEW_MIN_ALIGN: usize>(
self,
) -> Bump<A, NEW_MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
pub fn into_aligned<const NEW_MIN_ALIGN: usize>(
self,
) -> Bump<A, NEW_MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
Converts this Bump into a Bump with a new minimum alignment.
Sourcepub fn as_mut_aligned<const NEW_MIN_ALIGN: usize>(
&mut self,
) -> &mut Bump<A, NEW_MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
pub fn as_mut_aligned<const NEW_MIN_ALIGN: usize>(
&mut self,
) -> &mut Bump<A, NEW_MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<NEW_MIN_ALIGN>: SupportedMinimumAlignment,
Mutably borrows Bump with a new minimum alignment.
This cannot decrease the alignment. Trying to decrease alignment will result in a compile error.
You can use aligned or scoped_aligned to decrease the alignment.
When decreasing the alignment we need to make sure that the bump position is realigned to the original alignment. That can only be ensured by having a function that takes a closure, like the methods mentioned above do.
Sourcepub fn into_guaranteed_allocated(
self,
f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>,
) -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
pub fn into_guaranteed_allocated( self, f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, ) -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
Converts this Bump into a guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Panics
Panics if the closure panics.
§Examples
Creating scopes with a non-GUARANTEED_ALLOCATED bump is not possible.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.scoped(|bump| {
// ...
});Using this function you can make a Bump guaranteed allocated and create scopes.
let bump: Bump<Global, 1, true, false> = Bump::unallocated();
let mut bump = bump.into_guaranteed_allocated(Bump::new);
bump.scoped(|bump| {
// ...
});Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.into_guaranteed_allocated(|| {
Bump::with_size(2048)
});
// or
let bump = bump.into_guaranteed_allocated(|| {
Bump::with_capacity(Layout::new::<[i32; 1024]>())
});Sourcepub fn try_into_guaranteed_allocated(
self,
f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>,
) -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
pub fn try_into_guaranteed_allocated( self, f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>, ) -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
Converts this Bump into a guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Errors
Errors if the closure fails.
§Examples
Creating scopes with a non-GUARANTEED_ALLOCATED bump is not possible.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.scoped(|bump| {
// ...
});Using this function you can make a Bump guaranteed allocated and create scopes.
let bump: Bump<Global, 1, true, false> = Bump::unallocated();
let mut bump = bump.try_into_guaranteed_allocated(Bump::try_new)?;
bump.scoped(|bump| {
// ...
});Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.try_into_guaranteed_allocated(|| {
Bump::try_with_size(2048)
})?;
// or
let bump = bump.try_into_guaranteed_allocated(|| {
Bump::try_with_capacity(Layout::new::<[i32; 1024]>())
})?;Sourcepub fn as_guaranteed_allocated(
&self,
f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>,
) -> &Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
pub fn as_guaranteed_allocated( &self, f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, ) -> &Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
Borrows Bump as a guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Panics
Panics if the closure panics.
§Examples
Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.as_guaranteed_allocated(|| {
Bump::with_size(2048)
});
// or
let bump = bump.as_guaranteed_allocated(|| {
Bump::with_capacity(Layout::new::<[i32; 1024]>())
});Sourcepub fn try_as_guaranteed_allocated(
&self,
f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>,
) -> Result<&Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
pub fn try_as_guaranteed_allocated( &self, f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>, ) -> Result<&Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
Borrows Bump as an guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Errors
Errors if the closure fails.
§Examples
Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.try_as_guaranteed_allocated(|| {
Bump::try_with_size(2048)
})?;
// or
let bump = bump.try_as_guaranteed_allocated(|| {
Bump::try_with_capacity(Layout::new::<[i32; 1024]>())
})?;Sourcepub fn as_mut_guaranteed_allocated(
&mut self,
f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>,
) -> &mut Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
pub fn as_mut_guaranteed_allocated( &mut self, f: impl FnOnce() -> Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, ) -> &mut Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>
Mutably borrows Bump as a guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Panics
Panics if the closure panics.
§Examples
Creating scopes with a non-GUARANTEED_ALLOCATED bump is not possible.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.scoped(|bump| {
// ...
});Using this function you can make a Bump guaranteed allocated and create scopes.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.as_mut_guaranteed_allocated(Bump::new).scoped(|bump| {
// ...
});Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.as_mut_guaranteed_allocated(|| {
Bump::with_size(2048)
});
// or
let bump = bump.as_mut_guaranteed_allocated(|| {
Bump::with_capacity(Layout::new::<[i32; 1024]>())
});Sourcepub fn try_as_mut_guaranteed_allocated(
&mut self,
f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>,
) -> Result<&mut Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
pub fn try_as_mut_guaranteed_allocated( &mut self, f: impl FnOnce() -> Result<Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>, ) -> Result<&mut Bump<A, MIN_ALIGN, UP, true, DEALLOCATES>, AllocError>
Mutably borrows Bump as an guaranteed allocated Bump.
If this Bump is not yet allocated, f will be called to allocate it.
§Errors
Errors if the closure fails.
§Examples
Creating scopes with a non-GUARANTEED_ALLOCATED bump is not possible.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.scoped(|bump| {
// ...
});Using this function you can make a Bump guaranteed allocated and create scopes.
let mut bump: Bump<Global, 1, true, false> = Bump::unallocated();
bump.try_as_mut_guaranteed_allocated(Bump::try_new)?.scoped(|bump| {
// ...
});Initialize an unallocated Bump with a custom size or capacity:
let bump = bump.try_as_mut_guaranteed_allocated(|| {
Bump::try_with_size(2048)
})?;
// or
let bump = bump.try_as_mut_guaranteed_allocated(|| {
Bump::try_with_capacity(Layout::new::<[i32; 1024]>())
})?;Sourcepub fn into_not_guaranteed_allocated(
self,
) -> Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>where
A: Default,
pub fn into_not_guaranteed_allocated(
self,
) -> Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>where
A: Default,
Converts this BumpScope into a not guaranteed allocated Bump.
Sourcepub fn as_not_guaranteed_allocated(
&self,
) -> &Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>where
A: Default,
pub fn as_not_guaranteed_allocated(
&self,
) -> &Bump<A, MIN_ALIGN, UP, false, DEALLOCATES>where
A: Default,
Borrows Bump as a not guaranteed allocated Bump.
Note that it’s not possible to mutably borrow as a not guaranteed allocated bump allocator. That’s because
a user could mem::swap it with an actual unallocated bump allocator which in turn would make &mut self
unallocated.
Sourcepub fn into_raw(self) -> NonNull<()>
pub fn into_raw(self) -> NonNull<()>
Converts this Bump into a raw pointer.
use bump_scope::Bump;
let bump: Bump = Bump::new();
let ptr = bump.into_raw();
let bump: Bump = unsafe { Bump::from_raw(ptr) };
bump.alloc_str("Why did i do this?");Sourcepub fn into_without_dealloc(
self,
) -> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
pub fn into_without_dealloc( self, ) -> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
Turns off deallocation and shrinking.
Sourcepub fn as_without_dealloc(
&self,
) -> &Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
pub fn as_without_dealloc( &self, ) -> &Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
Turns off deallocation and shrinking.
Sourcepub fn as_mut_without_dealloc(
&mut self,
) -> &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
pub fn as_mut_without_dealloc( &mut self, ) -> &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, false>
Turns off deallocation and shrinking.
Sourcepub fn into_with_dealloc(
self,
) -> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
pub fn into_with_dealloc( self, ) -> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
Turns on deallocation and shrinking.
Sourcepub fn as_with_dealloc(
&self,
) -> &Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
pub fn as_with_dealloc( &self, ) -> &Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
Turns on deallocation and shrinking.
Sourcepub fn as_mut_with_dealloc(
&mut self,
) -> &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
pub fn as_mut_with_dealloc( &mut self, ) -> &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, true>
Turns on deallocation and shrinking.
Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Methods to allocate. Available as fallible or infallible.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Methods to allocate. Available as fallible or infallible.
Sourcepub fn try_alloc<T>(&self, value: T) -> Result<BumpBox<'_, T>, AllocError>
pub fn try_alloc<T>(&self, value: T) -> Result<BumpBox<'_, T>, AllocError>
Sourcepub fn alloc_with<T>(&self, f: impl FnOnce() -> T) -> BumpBox<'_, T> ⓘ
pub fn alloc_with<T>(&self, f: impl FnOnce() -> T) -> BumpBox<'_, T> ⓘ
Allocates space for an object, then calls f to produce the
value to be put in that place.
In some cases this could be more performant than alloc(f()) because it
permits the compiler to directly place T in the allocated memory instead of
constructing it on the stack and copying it over.
§Panics
Panics if the allocation fails.
§Examples
let allocated = bump.alloc_with(|| 123);
assert_eq!(allocated, 123);Sourcepub fn try_alloc_with<T>(
&self,
f: impl FnOnce() -> T,
) -> Result<BumpBox<'_, T>, AllocError>
pub fn try_alloc_with<T>( &self, f: impl FnOnce() -> T, ) -> Result<BumpBox<'_, T>, AllocError>
Allocates space for an object, then calls f to produce the
value to be put in that place.
In some cases this could be more performant than try_alloc(f()) because it
permits the compiler to directly place T in the allocated memory instead of
constructing it on the stack and copying it over.
§Errors
Errors if the allocation fails.
§Examples
let allocated = bump.try_alloc_with(|| 123)?;
assert_eq!(allocated, 123);Sourcepub fn alloc_default<T: Default>(&self) -> BumpBox<'_, T> ⓘ
pub fn alloc_default<T: Default>(&self) -> BumpBox<'_, T> ⓘ
Allocate an object with its default value.
This is equivalent to alloc_with(T::default).
§Panics
Panics if the allocation fails.
§Examples
let allocated = bump.alloc_default::<i32>();
assert_eq!(allocated, 0);Sourcepub fn try_alloc_default<T: Default>(
&self,
) -> Result<BumpBox<'_, T>, AllocError>
pub fn try_alloc_default<T: Default>( &self, ) -> Result<BumpBox<'_, T>, AllocError>
Allocate an object with its default value.
This is equivalent to try_alloc_with(T::default).
§Errors
Errors if the allocation fails.
§Examples
let allocated = bump.try_alloc_default()?;
assert_eq!(allocated, 0);Sourcepub fn alloc_clone<T: CloneToUninit + ?Sized>(
&self,
value: &T,
) -> BumpBox<'_, T> ⓘ
Available on crate feature nightly-clone-to-uninit only.
pub fn alloc_clone<T: CloneToUninit + ?Sized>( &self, value: &T, ) -> BumpBox<'_, T> ⓘ
nightly-clone-to-uninit only.Allocate an object by cloning it.
Unlike alloc(value.clone()) this method also works for dynamically-sized types.
§Panics
Panics if the allocation fails.
§Examples
Allocate a slice, str, CStr, Path:
#![feature(clone_to_uninit)]
use std::path::Path;
let cloned = bump.alloc_clone(&[1, 2, 3]);
assert_eq!(cloned, &[1, 2, 3]);
let cloned = bump.alloc_clone("foo");
assert_eq!(cloned, "foo");
let cloned = bump.alloc_clone(c"foo");
assert_eq!(cloned, c"foo");
let cloned = bump.alloc_clone(Path::new("foo"));
assert_eq!(cloned, Path::new("foo"));Allocate a trait object:
#![feature(clone_to_uninit)]
use core::clone::CloneToUninit;
trait FnClone: Fn() -> String + CloneToUninit {}
impl<T: ?Sized + Fn() -> String + CloneToUninit> FnClone for T {}
// the closure references a local variable
let reference = &String::from("Hello,");
// and owns a string that it will have to clone
let value = String::from("world!");
let closure = move || format!("{reference} {value}");
let object: &dyn FnClone = &closure;
assert_eq!(object(), "Hello, world!");
let bump: Bump = Bump::new();
let object_clone = bump.alloc_clone(object);
assert_eq!(object_clone(), "Hello, world!");Sourcepub fn try_alloc_clone<T: CloneToUninit + ?Sized>(
&self,
value: &T,
) -> Result<BumpBox<'_, T>, AllocError>
Available on crate feature nightly-clone-to-uninit only.
pub fn try_alloc_clone<T: CloneToUninit + ?Sized>( &self, value: &T, ) -> Result<BumpBox<'_, T>, AllocError>
nightly-clone-to-uninit only.Allocate an object by cloning it.
Unlike alloc(value.clone()) this method also works for dynamically-sized types.
§Errors
Errors if the allocation fails.
§Examples
Allocate a slice, str, CStr, Path:
#![feature(clone_to_uninit)]
use std::path::Path;
let cloned = bump.try_alloc_clone(&[1, 2, 3])?;
assert_eq!(cloned, &[1, 2, 3]);
let cloned = bump.try_alloc_clone("foo")?;
assert_eq!(cloned, "foo");
let cloned = bump.try_alloc_clone(c"foo")?;
assert_eq!(cloned, c"foo");
let cloned = bump.try_alloc_clone(Path::new("foo"))?;
assert_eq!(cloned, Path::new("foo"));Allocate a trait object:
#![feature(clone_to_uninit)]
use core::clone::CloneToUninit;
trait FnClone: Fn() -> String + CloneToUninit {}
impl<T: ?Sized + Fn() -> String + CloneToUninit> FnClone for T {}
// the closure references a local variable
let reference = &String::from("Hello,");
// and owns a string that it will have to clone
let value = String::from("world!");
let closure = move || format!("{reference} {value}");
let object: &dyn FnClone = &closure;
assert_eq!(object(), "Hello, world!");
let bump: Bump = Bump::try_new()?;
let object_clone = bump.try_alloc_clone(object)?;
assert_eq!(object_clone(), "Hello, world!");Sourcepub fn alloc_slice_move<T>(
&self,
slice: impl OwnedSlice<Item = T>,
) -> BumpBox<'_, [T]> ⓘ
pub fn alloc_slice_move<T>( &self, slice: impl OwnedSlice<Item = T>, ) -> BumpBox<'_, [T]> ⓘ
Allocate a slice and fill it by moving elements from an existing slice.
§Panics
Panics if the allocation fails.
§Examples
// by value
let a = bump.alloc_slice_move([1, 2]);
let b = bump.alloc_slice_move(vec![3, 4]);
let c = bump.alloc_slice_move(bump.alloc_iter(5..=6));
// by mutable reference
let mut other = vec![7, 8];
let d = bump.alloc_slice_move(&mut other);
assert!(other.is_empty());
assert_eq!(a, [1, 2]);
assert_eq!(b, [3, 4]);
assert_eq!(c, [5, 6]);
assert_eq!(d, [7, 8]);Sourcepub fn try_alloc_slice_move<T>(
&self,
slice: impl OwnedSlice<Item = T>,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_slice_move<T>( &self, slice: impl OwnedSlice<Item = T>, ) -> Result<BumpBox<'_, [T]>, AllocError>
Allocate a slice and fill it by moving elements from an existing slice.
§Errors
Errors if the allocation fails.
§Examples
// by value
let a = bump.try_alloc_slice_move([1, 2])?;
let b = bump.try_alloc_slice_move(vec![3, 4])?;
let c = bump.try_alloc_slice_move(bump.alloc_iter(5..=6))?;
// by mutable reference
let mut other = vec![7, 8];
let d = bump.try_alloc_slice_move(&mut other)?;
assert!(other.is_empty());
assert_eq!(a, [1, 2]);
assert_eq!(b, [3, 4]);
assert_eq!(c, [5, 6]);
assert_eq!(d, [7, 8]);Sourcepub fn try_alloc_slice_copy<T: Copy>(
&self,
slice: &[T],
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_slice_copy<T: Copy>( &self, slice: &[T], ) -> Result<BumpBox<'_, [T]>, AllocError>
Sourcepub fn try_alloc_slice_clone<T: Clone>(
&self,
slice: &[T],
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_slice_clone<T: Clone>( &self, slice: &[T], ) -> Result<BumpBox<'_, [T]>, AllocError>
Sourcepub fn try_alloc_slice_fill<T: Clone>(
&self,
len: usize,
value: T,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_slice_fill<T: Clone>( &self, len: usize, value: T, ) -> Result<BumpBox<'_, [T]>, AllocError>
Sourcepub fn alloc_slice_fill_with<T>(
&self,
len: usize,
f: impl FnMut() -> T,
) -> BumpBox<'_, [T]> ⓘ
pub fn alloc_slice_fill_with<T>( &self, len: usize, f: impl FnMut() -> T, ) -> BumpBox<'_, [T]> ⓘ
Allocates a slice by fill it with elements returned by calling a closure repeatedly.
This method uses a closure to create new values. If you’d rather
Clone a given value, use alloc_slice_fill. If you want to use the Default
trait to generate values, you can pass Default::default as the
argument.
§Panics
Panics if the allocation fails.
§Examples
let allocated = bump.alloc_slice_fill_with::<i32>(3, Default::default);
assert_eq!(allocated, [0, 0, 0]);Sourcepub fn try_alloc_slice_fill_with<T>(
&self,
len: usize,
f: impl FnMut() -> T,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_slice_fill_with<T>( &self, len: usize, f: impl FnMut() -> T, ) -> Result<BumpBox<'_, [T]>, AllocError>
Allocates a slice by fill it with elements returned by calling a closure repeatedly.
This method uses a closure to create new values. If you’d rather
Clone a given value, use try_alloc_slice_fill. If you want to use the Default
trait to generate values, you can pass Default::default as the
argument.
§Errors
Errors if the allocation fails.
§Examples
let allocated = bump.try_alloc_slice_fill_with::<i32>(3, Default::default)?;
assert_eq!(allocated, [0, 0, 0]);Sourcepub fn try_alloc_str(&self, src: &str) -> Result<BumpBox<'_, str>, AllocError>
pub fn try_alloc_str(&self, src: &str) -> Result<BumpBox<'_, str>, AllocError>
Sourcepub fn alloc_fmt(&self, args: Arguments<'_>) -> BumpBox<'_, str> ⓘ
pub fn alloc_fmt(&self, args: Arguments<'_>) -> BumpBox<'_, str> ⓘ
Allocate a str from format arguments.
If you have a &mut self you can use alloc_fmt_mut
instead for better performance.
§Panics
Panics if the allocation fails.
This technically also panics if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.alloc_fmt(format_args!("{one} + {two} = {}", one + two));
assert_eq!(string, "1 + 2 = 3");Sourcepub fn try_alloc_fmt(
&self,
args: Arguments<'_>,
) -> Result<BumpBox<'_, str>, AllocError>
pub fn try_alloc_fmt( &self, args: Arguments<'_>, ) -> Result<BumpBox<'_, str>, AllocError>
Allocate a str from format arguments.
If you have a &mut self you can use try_alloc_fmt_mut
instead for better performance.
§Errors
Errors if the allocation fails.
This technically also errors if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.try_alloc_fmt(format_args!("{one} + {two} = {}", one + two))?;
assert_eq!(string, "1 + 2 = 3");Sourcepub fn alloc_fmt_mut(&mut self, args: Arguments<'_>) -> BumpBox<'_, str> ⓘ
pub fn alloc_fmt_mut(&mut self, args: Arguments<'_>) -> BumpBox<'_, str> ⓘ
Allocate a str from format arguments.
This function is designed as a performance improvement over alloc_fmt.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary string buffer used for the allocation. As a result, that string buffer rarely needs to grow.
§Panics
Panics if the allocation fails.
This technically also panics if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.alloc_fmt_mut(format_args!("{one} + {two} = {}", one + two));
assert_eq!(string, "1 + 2 = 3");Sourcepub fn try_alloc_fmt_mut(
&mut self,
args: Arguments<'_>,
) -> Result<BumpBox<'_, str>, AllocError>
pub fn try_alloc_fmt_mut( &mut self, args: Arguments<'_>, ) -> Result<BumpBox<'_, str>, AllocError>
Allocate a str from format arguments.
This function is designed as a performance improvement over try_alloc_fmt.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary string buffer used for the allocation. As a result, that string buffer rarely needs to grow.
§Errors
Errors if the allocation fails.
This technically also errors if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.try_alloc_fmt_mut(format_args!("{one} + {two} = {}", one + two))?;
assert_eq!(string, "1 + 2 = 3");Sourcepub fn alloc_cstr(&self, src: &CStr) -> &CStr
pub fn alloc_cstr(&self, src: &CStr) -> &CStr
Sourcepub fn try_alloc_cstr(&self, src: &CStr) -> Result<&CStr, AllocError>
pub fn try_alloc_cstr(&self, src: &CStr) -> Result<&CStr, AllocError>
Sourcepub fn alloc_cstr_from_str(&self, src: &str) -> &CStr
pub fn alloc_cstr_from_str(&self, src: &str) -> &CStr
Allocate a CStr from a str.
If src contains a '\0' then the CStr will stop at the first '\0'.
§Panics
Panics if the allocation fails.
§Examples
let allocated = bump.alloc_cstr_from_str("Hello, world!");
assert_eq!(allocated, c"Hello, world!");
let allocated = bump.alloc_cstr_from_str("abc\0def");
assert_eq!(allocated, c"abc");Sourcepub fn try_alloc_cstr_from_str(&self, src: &str) -> Result<&CStr, AllocError>
pub fn try_alloc_cstr_from_str(&self, src: &str) -> Result<&CStr, AllocError>
Allocate a CStr from a str.
If src contains a '\0' then the CStr will stop at the first '\0'.
§Errors
Errors if the allocation fails.
§Examples
let allocated = bump.try_alloc_cstr_from_str("Hello, world!")?;
assert_eq!(allocated, c"Hello, world!");
let allocated = bump.try_alloc_cstr_from_str("abc\0def")?;
assert_eq!(allocated, c"abc");Sourcepub fn alloc_cstr_fmt(&self, args: Arguments<'_>) -> &CStr
pub fn alloc_cstr_fmt(&self, args: Arguments<'_>) -> &CStr
Allocate a CStr from format arguments.
If the string contains a '\0' then the CStr will stop at the first '\0'.
If you have a &mut self you can use alloc_cstr_fmt_mut
instead for better performance.
§Panics
Panics if the allocation fails.
This technically also panics if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.alloc_cstr_fmt(format_args!("{one} + {two} = {}", one + two));
assert_eq!(string, c"1 + 2 = 3");
let one = bump.alloc_cstr_fmt(format_args!("{one}\0{two}"));
assert_eq!(one, c"1");Sourcepub fn try_alloc_cstr_fmt(
&self,
args: Arguments<'_>,
) -> Result<&CStr, AllocError>
pub fn try_alloc_cstr_fmt( &self, args: Arguments<'_>, ) -> Result<&CStr, AllocError>
Allocate a CStr from format arguments.
If the string contains a '\0' then the CStr will stop at the first '\0'.
If you have a &mut self you can use try_alloc_cstr_fmt_mut
instead for better performance.
§Errors
Errors if the allocation fails.
This technically also errors if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.try_alloc_cstr_fmt(format_args!("{one} + {two} = {}", one + two))?;
assert_eq!(string, c"1 + 2 = 3");
let one = bump.try_alloc_cstr_fmt(format_args!("{one}\0{two}"))?;
assert_eq!(one, c"1");Sourcepub fn alloc_cstr_fmt_mut(&mut self, args: Arguments<'_>) -> &CStr
pub fn alloc_cstr_fmt_mut(&mut self, args: Arguments<'_>) -> &CStr
Allocate a CStr from format arguments.
If the string contains a '\0' then the CStr will stop at the first '\0'.
This function is designed as a performance improvement over alloc_cstr_fmt.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary string buffer used for the allocation. As a result, that string buffer rarely needs to grow.
§Panics
Panics if the allocation fails.
This technically also panics if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.alloc_cstr_fmt_mut(format_args!("{one} + {two} = {}", one + two));
assert_eq!(string, c"1 + 2 = 3");
let one = bump.alloc_cstr_fmt_mut(format_args!("{one}\0{two}"));
assert_eq!(one, c"1");Sourcepub fn try_alloc_cstr_fmt_mut(
&mut self,
args: Arguments<'_>,
) -> Result<&CStr, AllocError>
pub fn try_alloc_cstr_fmt_mut( &mut self, args: Arguments<'_>, ) -> Result<&CStr, AllocError>
Allocate a CStr from format arguments.
If the string contains a '\0' then the CStr will stop at the first '\0'.
This function is designed as a performance improvement over try_alloc_cstr_fmt.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary string buffer used for the allocation. As a result, that string buffer rarely needs to grow.
§Errors
Errors if the allocation fails.
This technically also errors if the fmt() implementation returned an Error,
but since fmt() implementors should only error when writing to the stream fails,
that should be equivalent to an allocation failure.
§Examples
let one = 1;
let two = 2;
let string = bump.try_alloc_cstr_fmt_mut(format_args!("{one} + {two} = {}", one + two))?;
assert_eq!(string, c"1 + 2 = 3");
let one = bump.try_alloc_cstr_fmt_mut(format_args!("{one}\0{two}"))?;
assert_eq!(one, c"1");Sourcepub fn alloc_iter<T>(
&self,
iter: impl IntoIterator<Item = T>,
) -> BumpBox<'_, [T]> ⓘ
pub fn alloc_iter<T>( &self, iter: impl IntoIterator<Item = T>, ) -> BumpBox<'_, [T]> ⓘ
Allocate elements of an iterator into a slice.
If you have an impl ExactSizeIterator then you can use alloc_iter_exact instead for better performance.
If iter is not an ExactSizeIterator but you have a &mut self you can still get somewhat better performance by using alloc_iter_mut.
§Panics
Panics if the allocation fails.
§Examples
let slice = bump.alloc_iter([1, 2, 3]);
assert_eq!(slice, [1, 2, 3]);Sourcepub fn try_alloc_iter<T>(
&self,
iter: impl IntoIterator<Item = T>,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_iter<T>( &self, iter: impl IntoIterator<Item = T>, ) -> Result<BumpBox<'_, [T]>, AllocError>
Allocate elements of an iterator into a slice.
If you have an impl ExactSizeIterator then you can use try_alloc_iter_exact instead for better performance.
If iter is not an ExactSizeIterator but you have a &mut self you can still get somewhat better performance by using try_alloc_iter_mut.
§Errors
Errors if the allocation fails.
§Examples
let slice = bump.try_alloc_iter([1, 2, 3])?;
assert_eq!(slice, [1, 2, 3]);Sourcepub fn alloc_iter_exact<T, I>(
&self,
iter: impl IntoIterator<Item = T, IntoIter = I>,
) -> BumpBox<'_, [T]> ⓘwhere
I: ExactSizeIterator<Item = T>,
pub fn alloc_iter_exact<T, I>(
&self,
iter: impl IntoIterator<Item = T, IntoIter = I>,
) -> BumpBox<'_, [T]> ⓘwhere
I: ExactSizeIterator<Item = T>,
Sourcepub fn try_alloc_iter_exact<T, I>(
&self,
iter: impl IntoIterator<Item = T, IntoIter = I>,
) -> Result<BumpBox<'_, [T]>, AllocError>where
I: ExactSizeIterator<Item = T>,
pub fn try_alloc_iter_exact<T, I>(
&self,
iter: impl IntoIterator<Item = T, IntoIter = I>,
) -> Result<BumpBox<'_, [T]>, AllocError>where
I: ExactSizeIterator<Item = T>,
Sourcepub fn alloc_iter_mut<T>(
&mut self,
iter: impl IntoIterator<Item = T>,
) -> BumpBox<'_, [T]> ⓘ
pub fn alloc_iter_mut<T>( &mut self, iter: impl IntoIterator<Item = T>, ) -> BumpBox<'_, [T]> ⓘ
Allocate elements of an iterator into a slice.
This function is designed as a performance improvement over alloc_iter.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary vector used for the allocation. As a result, that vector rarely needs to grow.
When bumping downwards, prefer alloc_iter_mut_rev instead.
§Panics
Panics if the allocation fails.
§Examples
let slice = bump.alloc_iter_mut([1, 2, 3]);
assert_eq!(slice, [1, 2, 3]);Sourcepub fn try_alloc_iter_mut<T>(
&mut self,
iter: impl IntoIterator<Item = T>,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_iter_mut<T>( &mut self, iter: impl IntoIterator<Item = T>, ) -> Result<BumpBox<'_, [T]>, AllocError>
Allocate elements of an iterator into a slice.
This function is designed as a performance improvement over try_alloc_iter.
By taking self as &mut, it can use the entire remaining chunk space as the capacity
for the temporary vector used for the allocation. As a result, that vector rarely needs to grow.
When bumping downwards, prefer alloc_iter_mut_rev instead.
§Errors
Errors if the allocation fails.
§Examples
let slice = bump.try_alloc_iter_mut([1, 2, 3])?;
assert_eq!(slice, [1, 2, 3]);Sourcepub fn alloc_iter_mut_rev<T>(
&mut self,
iter: impl IntoIterator<Item = T>,
) -> BumpBox<'_, [T]> ⓘ
pub fn alloc_iter_mut_rev<T>( &mut self, iter: impl IntoIterator<Item = T>, ) -> BumpBox<'_, [T]> ⓘ
Allocate elements of an iterator into a slice in reverse order.
Compared to alloc_iter_mut this function is more performant
for downwards bumping allocators as the allocation for the vector can be shrunk in place
without any ptr::copy.
The reverse is true when upwards allocating. In that case it’s better to use alloc_iter_mut to prevent
the ptr::copy.
§Panics
Panics if the allocation fails.
§Examples
let slice = bump.alloc_iter_mut_rev([1, 2, 3]);
assert_eq!(slice, [3, 2, 1]);Sourcepub fn try_alloc_iter_mut_rev<T>(
&mut self,
iter: impl IntoIterator<Item = T>,
) -> Result<BumpBox<'_, [T]>, AllocError>
pub fn try_alloc_iter_mut_rev<T>( &mut self, iter: impl IntoIterator<Item = T>, ) -> Result<BumpBox<'_, [T]>, AllocError>
Allocate elements of an iterator into a slice in reverse order.
Compared to try_alloc_iter_mut this function is more performant
for downwards bumping allocators as the allocation for the vector can be shrunk in place
without any ptr::copy.
The reverse is true when upwards allocating. In that case it’s better to use try_alloc_iter_mut to prevent
the ptr::copy.
§Errors
Errors if the allocation fails.
§Examples
let slice = bump.try_alloc_iter_mut_rev([1, 2, 3])?;
assert_eq!(slice, [3, 2, 1]);Sourcepub fn alloc_uninit<T>(&self) -> BumpBox<'_, MaybeUninit<T>> ⓘ
pub fn alloc_uninit<T>(&self) -> BumpBox<'_, MaybeUninit<T>> ⓘ
Allocate an uninitialized object.
You can safely initialize the object with init or unsafely with assume_init.
§Panics
Panics if the allocation fails.
§Examples
Safely:
let uninit = bump.alloc_uninit();
let five = uninit.init(5);
assert_eq!(*five, 5)Unsafely:
let mut uninit = bump.alloc_uninit();
let five = unsafe {
uninit.write(5);
uninit.assume_init()
};
assert_eq!(*five, 5)Sourcepub fn try_alloc_uninit<T>(
&self,
) -> Result<BumpBox<'_, MaybeUninit<T>>, AllocError>
pub fn try_alloc_uninit<T>( &self, ) -> Result<BumpBox<'_, MaybeUninit<T>>, AllocError>
Allocate an uninitialized object.
You can safely initialize the object with init or unsafely with assume_init.
§Errors
Errors if the allocation fails.
§Examples
Safely:
let uninit = bump.try_alloc_uninit()?;
let five = uninit.init(5);
assert_eq!(*five, 5);Unsafely:
let mut uninit = bump.try_alloc_uninit()?;
let five = unsafe {
uninit.write(5);
uninit.assume_init()
};
assert_eq!(*five, 5);Sourcepub fn alloc_uninit_slice<T>(&self, len: usize) -> BumpBox<'_, [MaybeUninit<T>]> ⓘ
pub fn alloc_uninit_slice<T>(&self, len: usize) -> BumpBox<'_, [MaybeUninit<T>]> ⓘ
Allocate an uninitialized object slice.
You can safely initialize the object with
init_fill,
init_fill_with,
init_copy,
init_clone,
init_zeroed or unsafely with
assume_init.
§Panics
Panics if the allocation fails.
§Examples
Safely:
let uninit = bump.alloc_uninit_slice(3);
let values = uninit.init_copy(&[1, 2, 3]);
assert_eq!(values, [1, 2, 3])Unsafely:
let mut uninit = bump.alloc_uninit_slice(3);
let values = unsafe {
uninit[0].write(1);
uninit[1].write(2);
uninit[2].write(3);
uninit.assume_init()
};
assert_eq!(values, [1, 2, 3]);Sourcepub fn try_alloc_uninit_slice<T>(
&self,
len: usize,
) -> Result<BumpBox<'_, [MaybeUninit<T>]>, AllocError>
pub fn try_alloc_uninit_slice<T>( &self, len: usize, ) -> Result<BumpBox<'_, [MaybeUninit<T>]>, AllocError>
Allocate an uninitialized object slice.
You can safely initialize the object with
init_fill,
init_fill_with,
init_copy,
init_clone,
init_zeroed or unsafely with
assume_init.
§Errors
Errors if the allocation fails.
§Examples
Safely:
let uninit = bump.try_alloc_uninit_slice(3)?;
let values = uninit.init_copy(&[1, 2, 3]);
assert_eq!(values, [1, 2, 3]);Unsafely:
let mut uninit = bump.try_alloc_uninit_slice(3)?;
let values = unsafe {
uninit[0].write(1);
uninit[1].write(2);
uninit[2].write(3);
uninit.assume_init()
};
assert_eq!(values, [1, 2, 3]);Sourcepub fn alloc_uninit_slice_for<T>(
&self,
slice: &[T],
) -> BumpBox<'_, [MaybeUninit<T>]> ⓘ
pub fn alloc_uninit_slice_for<T>( &self, slice: &[T], ) -> BumpBox<'_, [MaybeUninit<T>]> ⓘ
Allocate an uninitialized object slice.
You can safely initialize the object with
init_fill,
init_fill_with,
init_copy,
init_clone,
init_zeroed or unsafely with
assume_init.
This is just like alloc_uninit_slice but uses a slice to provide the len.
This avoids a check for a valid layout. The elements of slice are irrelevant.
§Panics
Panics if the allocation fails.
§Examples
let slice = &[1, 2, 3];
let uninit_slice = bump.alloc_uninit_slice_for(slice);
assert_eq!(uninit_slice.len(), 3);Sourcepub fn try_alloc_uninit_slice_for<T>(
&self,
slice: &[T],
) -> Result<BumpBox<'_, [MaybeUninit<T>]>, AllocError>
pub fn try_alloc_uninit_slice_for<T>( &self, slice: &[T], ) -> Result<BumpBox<'_, [MaybeUninit<T>]>, AllocError>
Allocate an uninitialized object slice.
You can safely initialize the object with
init_fill,
init_fill_with,
init_copy,
init_clone,
init_zeroed or unsafely with
assume_init.
This is just like try_alloc_uninit_slice but uses a slice to provide the len.
This avoids a check for a valid layout. The elements of slice are irrelevant.
§Errors
Errors if the allocation fails.
§Examples
let slice = &[1, 2, 3];
let uninit_slice = bump.try_alloc_uninit_slice_for(slice)?;
assert_eq!(uninit_slice.len(), 3);Sourcepub fn alloc_layout(&self, layout: Layout) -> NonNull<u8>
pub fn alloc_layout(&self, layout: Layout) -> NonNull<u8>
Sourcepub fn try_alloc_layout(
&self,
layout: Layout,
) -> Result<NonNull<u8>, AllocError>
pub fn try_alloc_layout( &self, layout: Layout, ) -> Result<NonNull<u8>, AllocError>
Sourcepub fn dealloc<T: ?Sized>(&self, boxed: BumpBox<'_, T>)
pub fn dealloc<T: ?Sized>(&self, boxed: BumpBox<'_, T>)
Drops an allocated value and attempts to free its memory.
The memory can only be freed if this is the last allocation.
§Examples
let boxed = bump.alloc(3i32);
assert_eq!(bump.stats().allocated(), 4);
bump.dealloc(boxed);
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn reserve_bytes(&self, additional: usize)
pub fn reserve_bytes(&self, additional: usize)
Reserves capacity for at least additional more bytes to be bump allocated.
The bump allocator may reserve more space to avoid frequent reallocations.
After calling reserve_bytes, self.stats().remaining() will be greater than or equal to
additional. Does nothing if the capacity is already sufficient.
Note that these additional bytes are not necessarily in one contiguous region but might be spread out among many chunks.
§Panics
Panics if the allocation fails.
§Examples
let bump: Bump = Bump::new();
assert!(bump.stats().capacity() < 4096);
bump.reserve_bytes(4096);
assert!(bump.stats().capacity() >= 4096);Sourcepub fn try_reserve_bytes(&self, additional: usize) -> Result<(), AllocError>
pub fn try_reserve_bytes(&self, additional: usize) -> Result<(), AllocError>
Reserves capacity for at least additional more bytes to be bump allocated.
The bump allocator may reserve more space to avoid frequent reallocations.
After calling reserve_bytes, self.stats().remaining() will be greater than or equal to
additional. Does nothing if the capacity is already sufficient.
§Errors
Errors if the allocation fails.
§Examples
let bump: Bump = Bump::try_new()?;
assert!(bump.stats().capacity() < 4096);
bump.try_reserve_bytes(4096)?;
assert!(bump.stats().capacity() >= 4096);Sourcepub fn alloc_try_with<T, E>(
&self,
f: impl FnOnce() -> Result<T, E>,
) -> Result<BumpBox<'_, T>, E>
pub fn alloc_try_with<T, E>( &self, f: impl FnOnce() -> Result<T, E>, ) -> Result<BumpBox<'_, T>, E>
Allocates the result of f in the bump allocator, then moves E out of it and deallocates the space it took up.
This can be more performant than allocating T after the fact, as Result<T, E> may be constructed in the bump allocators memory instead of on the stack and then copied over.
There is also alloc_try_with_mut, optimized for a mutable reference.
§Panics
Panics if the allocation fails.
§Examples
let result = bump.alloc_try_with(|| -> Result<i32, i32> { Ok(123) });
assert_eq!(result.unwrap(), 123);
assert_eq!(bump.stats().allocated(), offset_of!(Result<i32, i32>, Ok.0) + size_of::<i32>());let result = bump.alloc_try_with(|| -> Result<i32, i32> { Err(123) });
assert_eq!(result.unwrap_err(), 123);
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn try_alloc_try_with<T, E>(
&self,
f: impl FnOnce() -> Result<T, E>,
) -> Result<Result<BumpBox<'_, T>, E>, AllocError>
pub fn try_alloc_try_with<T, E>( &self, f: impl FnOnce() -> Result<T, E>, ) -> Result<Result<BumpBox<'_, T>, E>, AllocError>
Allocates the result of f in the bump allocator, then moves E out of it and deallocates the space it took up.
This can be more performant than allocating T after the fact, as Result<T, E> may be constructed in the bump allocators memory instead of on the stack and then copied over.
There is also try_alloc_try_with_mut, optimized for a mutable reference.
§Errors
Errors if the allocation fails.
§Examples
let result = bump.try_alloc_try_with(|| -> Result<i32, i32> { Ok(123) })?;
assert_eq!(result.unwrap(), 123);
assert_eq!(bump.stats().allocated(), offset_of!(Result<i32, i32>, Ok.0) + size_of::<i32>());let result = bump.try_alloc_try_with(|| -> Result<i32, i32> { Err(123) })?;
assert_eq!(result.unwrap_err(), 123);
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn alloc_try_with_mut<T, E>(
&mut self,
f: impl FnOnce() -> Result<T, E>,
) -> Result<BumpBox<'_, T>, E>
pub fn alloc_try_with_mut<T, E>( &mut self, f: impl FnOnce() -> Result<T, E>, ) -> Result<BumpBox<'_, T>, E>
Allocates the result of f in the bump allocator, then moves E out of it and deallocates the space it took up.
This can be more performant than allocating T after the fact, as Result<T, E> may be constructed in the bump allocators memory instead of on the stack and then copied over.
This is just like alloc_try_with, but optimized for a mutable reference.
§Panics
Panics if the allocation fails.
§Examples
let result = bump.alloc_try_with_mut(|| -> Result<i32, i32> { Ok(123) });
assert_eq!(result.unwrap(), 123);
assert_eq!(bump.stats().allocated(), offset_of!(Result<i32, i32>, Ok.0) + size_of::<i32>());let result = bump.alloc_try_with_mut(|| -> Result<i32, i32> { Err(123) });
assert_eq!(result.unwrap_err(), 123);
assert_eq!(bump.stats().allocated(), 0);Sourcepub fn try_alloc_try_with_mut<T, E>(
&mut self,
f: impl FnOnce() -> Result<T, E>,
) -> Result<Result<BumpBox<'_, T>, E>, AllocError>
pub fn try_alloc_try_with_mut<T, E>( &mut self, f: impl FnOnce() -> Result<T, E>, ) -> Result<Result<BumpBox<'_, T>, E>, AllocError>
Allocates the result of f in the bump allocator, then moves E out of it and deallocates the space it took up.
This can be more performant than allocating T after the fact, as Result<T, E> may be constructed in the bump allocators memory instead of on the stack and then copied over.
This is just like try_alloc_try_with, but optimized for a mutable reference.
§Errors
Errors if the allocation fails.
§Examples
let result = bump.try_alloc_try_with_mut(|| -> Result<i32, i32> { Ok(123) })?;
assert_eq!(result.unwrap(), 123);
assert_eq!(bump.stats().allocated(), offset_of!(Result<i32, i32>, Ok.0) + size_of::<i32>());let result = bump.try_alloc_try_with_mut(|| -> Result<i32, i32> { Err(123) })?;
assert_eq!(result.unwrap_err(), 123);
assert_eq!(bump.stats().allocated(), 0);Trait Implementations§
Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature nightly-allocator-api only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
nightly-allocator-api only.Source§fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
allocator_api)ptr. Read moreSource§unsafe fn grow(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§unsafe fn grow_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow_zeroed( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)grow, but also ensures that the new contents are set to zero before being
returned. Read moreSource§unsafe fn shrink(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn shrink( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocator_api)allocate, but also ensures that the returned memory is zero-initialized. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature allocator-api2-03 only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for &mut Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
allocator-api2-03 only.Source§fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
ptr. Read moreSource§unsafe fn grow(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn grow_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow_zeroed( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
grow, but also ensures that the new contents are set to zero before being
returned. Read moreSource§unsafe fn shrink(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn shrink( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocate, but also ensures that the returned memory is zero-initialized. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Source§fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
ptr. Read moreSource§unsafe fn grow(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn grow_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow_zeroed( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
grow, but also ensures that the new contents are set to zero before being
returned. Read moreSource§unsafe fn shrink(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn shrink( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocate, but also ensures that the returned memory is zero-initialized. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature nightly-allocator-api only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
nightly-allocator-api only.Source§fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
allocator_api)ptr. Read moreSource§unsafe fn grow(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§unsafe fn grow_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow_zeroed( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)grow, but also ensures that the new contents are set to zero before being
returned. Read moreSource§unsafe fn shrink(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn shrink( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
allocator_api)Source§fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocator_api)allocate, but also ensures that the returned memory is zero-initialized. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature allocator-api2-03 only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> Allocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
allocator-api2-03 only.Source§fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout)
ptr. Read moreSource§unsafe fn grow(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§unsafe fn grow_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn grow_zeroed( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
grow, but also ensures that the new contents are set to zero before being
returned. Read moreSource§unsafe fn shrink(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn shrink( &self, ptr: NonNull<u8>, old_layout: Layout, new_layout: Layout, ) -> Result<NonNull<[u8]>, AllocError>
Source§fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError>
allocate, but also ensures that the returned memory is zero-initialized. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpAllocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpAllocator for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Source§fn any_stats(&self) -> AnyStats<'_>
fn any_stats(&self) -> AnyStats<'_>
Source§fn checkpoint(&self) -> Checkpoint
fn checkpoint(&self) -> Checkpoint
Source§unsafe fn reset_to(&self, checkpoint: Checkpoint)
unsafe fn reset_to(&self, checkpoint: Checkpoint)
Source§fn prepare_allocation(
&self,
layout: Layout,
) -> Result<Range<NonNull<u8>>, AllocError>
fn prepare_allocation( &self, layout: Layout, ) -> Result<Range<NonNull<u8>>, AllocError>
layout.size(). Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpAllocatorExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpAllocatorExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Source§type Stats<'b> = Stats<'b, A, UP, GUARANTEED_ALLOCATED>
where
Self: 'b
type Stats<'b> = Stats<'b, A, UP, GUARANTEED_ALLOCATED> where Self: 'b
Source§fn stats(&self) -> Self::Stats<'_>
fn stats(&self) -> Self::Stats<'_>
Source§fn try_allocate_layout(&self, layout: Layout) -> Result<NonNull<u8>, AllocError>
fn try_allocate_layout(&self, layout: Layout) -> Result<NonNull<u8>, AllocError>
Source§fn try_allocate_sized<T>(&self) -> Result<NonNull<T>, AllocError>
fn try_allocate_sized<T>(&self) -> Result<NonNull<T>, AllocError>
Source§fn allocate_slice<T>(&self, len: usize) -> NonNull<T>
fn allocate_slice<T>(&self, len: usize) -> NonNull<T>
Source§fn try_allocate_slice<T>(&self, len: usize) -> Result<NonNull<T>, AllocError>
fn try_allocate_slice<T>(&self, len: usize) -> Result<NonNull<T>, AllocError>
Source§unsafe fn shrink_slice<T>(
&self,
ptr: NonNull<T>,
old_len: usize,
new_len: usize,
) -> Option<NonNull<T>>
unsafe fn shrink_slice<T>( &self, ptr: NonNull<T>, old_len: usize, new_len: usize, ) -> Option<NonNull<T>>
Source§fn prepare_slice_allocation<T>(&self, len: usize) -> NonNull<[T]>
fn prepare_slice_allocation<T>(&self, len: usize) -> NonNull<[T]>
prepare_allocation. Read moreSource§fn try_prepare_slice_allocation<T>(
&self,
len: usize,
) -> Result<NonNull<[T]>, AllocError>
fn try_prepare_slice_allocation<T>( &self, len: usize, ) -> Result<NonNull<[T]>, AllocError>
prepare_allocation. Read moreSource§unsafe fn allocate_prepared_slice<T>(
&self,
ptr: NonNull<T>,
len: usize,
cap: usize,
) -> NonNull<[T]>
unsafe fn allocate_prepared_slice<T>( &self, ptr: NonNull<T>, len: usize, cap: usize, ) -> NonNull<[T]>
allocate_prepared. Read moreSource§unsafe fn allocate_prepared_slice_rev<T>(
&self,
ptr: NonNull<T>,
len: usize,
cap: usize,
) -> NonNull<[T]>
unsafe fn allocate_prepared_slice_rev<T>( &self, ptr: NonNull<T>, len: usize, cap: usize, ) -> NonNull<[T]>
allocate_prepared_rev. Read moreSource§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature bytemuck only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
bytemuck only.Source§fn alloc_zeroed<T>(&self) -> BumpBox<'_, T> ⓘwhere
T: Zeroable,
fn alloc_zeroed<T>(&self) -> BumpBox<'_, T> ⓘwhere
T: Zeroable,
Source§fn try_alloc_zeroed<T>(&self) -> Result<BumpBox<'_, T>, AllocError>where
T: Zeroable,
fn try_alloc_zeroed<T>(&self) -> Result<BumpBox<'_, T>, AllocError>where
T: Zeroable,
Source§fn alloc_zeroed_slice<T>(&self, len: usize) -> BumpBox<'_, [T]> ⓘwhere
T: Zeroable,
fn alloc_zeroed_slice<T>(&self, len: usize) -> BumpBox<'_, [T]> ⓘwhere
T: Zeroable,
Source§fn try_alloc_zeroed_slice<T>(
&self,
len: usize,
) -> Result<BumpBox<'_, [T]>, AllocError>where
T: Zeroable,
fn try_alloc_zeroed_slice<T>(
&self,
len: usize,
) -> Result<BumpBox<'_, [T]>, AllocError>where
T: Zeroable,
Source§impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
Available on crate feature zerocopy-08 only.
impl<A, const MIN_ALIGN: usize, const UP: bool, const GUARANTEED_ALLOCATED: bool, const DEALLOCATES: bool> BumpExt for Bump<A, MIN_ALIGN, UP, GUARANTEED_ALLOCATED, DEALLOCATES>where
MinimumAlignment<MIN_ALIGN>: SupportedMinimumAlignment,
A: BaseAllocator<GUARANTEED_ALLOCATED>,
zerocopy-08 only.