[−][src]Struct bump_into::BumpInto
A bump allocator over an arbitrary region of memory.
Implementations
impl<'this, 'a: 'this> BumpInto<'a>[src]
pub fn from_slice<S>(array: &'a mut [MaybeUninit<S>]) -> Self[src]
Creates a new BumpInto, wrapping a slice of MaybeUninit<S>.
pub fn from_single<S>(single: &'a mut MaybeUninit<S>) -> Self[src]
Creates a new BumpInto, wrapping a single MaybeUninit<S>.
pub fn available_bytes(&'this self) -> usize[src]
Returns the number of bytes remaining in the allocator's space.
pub fn available_spaces<S: Into<usize>, A: Into<usize>>(
&'this self,
size: S,
align: A
) -> usize[src]
&'this self,
size: S,
align: A
) -> usize
Returns the number of spaces of size size that could be
allocated in a contiguous region ending at alignment align
within the allocator's remaining space.
pub fn available_spaces_for<T>(&'this self) -> usize[src]
Returns the number of T that could be allocated in a
contiguous region within the allocator's remaining space.
pub fn alloc_space<S: Into<usize>, A: Into<usize>>(
&'this self,
size: S,
align: A
) -> *mut MaybeUninit<u8>[src]
&'this self,
size: S,
align: A
) -> *mut MaybeUninit<u8>
Tries to allocate size bytes with alignment align.
Returns a null pointer on failure.
pub fn alloc_space_for<T>(&'this self) -> *mut T[src]
Tries to allocate enough space to store a T.
Returns a properly aligned pointer to uninitialized T if
there was enough space; otherwise returns a null pointer.
pub fn alloc_space_for_n<T>(&'this self, count: usize) -> *mut T[src]
Tries to allocate enough space to store count number of T.
Returns a properly aligned pointer to uninitialized T if
there was enough space; otherwise returns a null pointer.
pub fn alloc_space_to_limit_for<T>(&'this self) -> (NonNull<T>, usize)[src]
Allocates space for as many aligned T as will fit in the
free space of this BumpInto. Returns a tuple holding a
pointer to the lowest T-space that was just allocated and
the count of T that will fit (which may be zero).
pub fn alloc<T>(&'this self, x: T) -> Result<&'this mut T, T>[src]
Tries to allocate enough space to store a T and place x there.
On success (i.e. if there was enough space) produces a mutable
reference to x with the lifetime of this BumpInto.
On failure, produces x.
pub fn alloc_with<T, F: FnOnce() -> T>(
&'this self,
f: F
) -> Result<&'this mut T, F>[src]
&'this self,
f: F
) -> Result<&'this mut T, F>
Tries to allocate enough space to store a T and place the result
of calling f there.
On success (i.e. if there was enough space) produces a mutable
reference to the stored result with the lifetime of this BumpInto.
On failure, produces f.
pub fn alloc_n<T: Copy>(&'this self, xs: &[T]) -> Option<&'this mut [T]>[src]
Tries to allocate enough space to store a copy of xs and copy
xs into it.
On success (i.e. if there was enough space) produces a mutable
reference to the copy with the lifetime of this BumpInto.
pub fn alloc_n_with<T, I: IntoIterator<Item = T>>(
&'this self,
count: usize,
iter: I
) -> Result<&'this mut [T], I>[src]
&'this self,
count: usize,
iter: I
) -> Result<&'this mut [T], I>
Tries to allocate enough space to store count number of T and
fill it with the values produced by iter.into_iter().
On success (i.e. if there was enough space) produces a mutable
reference to the stored results as a slice, with the lifetime of
this BumpInto.
On failure, produces iter.
If the iterator ends before producing enough items to fill the allocated space, the same amount of space is allocated, but the returned slice is just long enough to hold the items that were actually produced.
pub fn alloc_down_with<T, I: IntoIterator<Item = T>>(
&'this mut self,
iter: I
) -> &'this mut [T][src]
&'this mut self,
iter: I
) -> &'this mut [T]
Allocates enough space to store as many of the values produced
by iter.into_iter() as possible. Produces a mutable reference
to the stored results as a slice, in the opposite order to the
order they were produced in, with the lifetime of this BumpInto.
pub unsafe fn alloc_down_with_shared<T, I: IntoIterator<Item = T>>(
&'this self,
iter: I
) -> &'this mut [T][src]
&'this self,
iter: I
) -> &'this mut [T]
Unsafe version of alloc_down_with, taking self as a shared
reference instead of a mutable reference.
Safety
Undefined behavior may result if any methods of this BumpInto
are called from within the next method of the iterator, with
the exception of the available_bytes, available_spaces,
and available_spaces_for methods, which are safe.
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,
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.
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>,