pub struct TlsfByteAllocator { /* private fields */ }
Expand description

A TLSF (Two-Level Segregated Fit) memory allocator.

It’s just a wrapper structure of [rlsf::Tlsf], with FLLEN and SLLEN fixed to 28 and 32.

Implementations§

source§

impl TlsfByteAllocator

source

pub const fn new() -> Self

Creates a new empty TlsfByteAllocator.

Trait Implementations§

source§

impl BaseAllocator for TlsfByteAllocator

source§

fn init(&mut self, start: usize, size: usize)

Initialize the allocator with a free memory region.
source§

fn add_memory(&mut self, start: usize, size: usize) -> AllocResult

Add a free memory region to the allocator.
source§

impl ByteAllocator for TlsfByteAllocator

source§

fn alloc(&mut self, layout: Layout) -> AllocResult<NonNull<u8>>

Allocate memory with the given size (in bytes) and alignment.
source§

fn dealloc(&mut self, pos: NonNull<u8>, layout: Layout)

Deallocate memory at the given position, size, and alignment.
source§

fn total_bytes(&self) -> usize

Returns total memory size in bytes.
source§

fn used_bytes(&self) -> usize

Returns allocated memory size in bytes.
source§

fn available_bytes(&self) -> usize

Returns available memory size in bytes.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.