Struct static_alloc::unsync::Chain [−][src]
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]
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]
&'bump self
) -> Result<LeakBox<'bump, MaybeUninit<T>>, Failure>
Attempts to allocate elem within the allocator.
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]
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]
Returns the remaining capacity of this Chain.
This is how many more bytes can be allocated
within this Chain.
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,