Struct static_alloc::unsync::Chain [−][src]
pub struct Chain { /* fields omitted */ }
Expand description
A Chain
is a simple bump allocator, that draws
it’s memory from another allocator. Chain allocators
can be chained together using Chain::chain
.
Implementations
impl Chain
[src]
impl Chain
[src]pub fn new(size: usize) -> Result<Self, TryNewError>
[src]
pub fn new(size: usize) -> Result<Self, TryNewError>
[src]Creates a new Chain
that has a capacity of size
bytes.
pub fn bump_box<'bump, T: 'bump>(
&'bump self
) -> Result<LeakBox<'bump, MaybeUninit<T>>, Failure>
[src]
pub fn bump_box<'bump, T: 'bump>(
&'bump self
) -> Result<LeakBox<'bump, MaybeUninit<T>>, Failure>
[src]Attempts to allocate elem
within the allocator.
pub fn chain(&self, new: Chain)
[src]
pub fn chain(&self, new: Chain)
[src]Chains self
together with new
.
Following allocations will first be allocated from new
.
Note that this will drop all but the first link from new
.
pub fn capacity(&self) -> usize
[src]
pub fn capacity(&self) -> usize
[src]Returns the capacity of this Chain
.
This is how many bytes in total can
be allocated within this Chain
.
pub fn remaining_capacity(&self) -> usize
[src]
pub fn remaining_capacity(&self) -> usize
[src]Returns the remaining capacity of this Chain
.
This is how many more bytes can be allocated
within this Chain
.