Struct SizedPool

Source
pub struct SizedPool<T: Default> { /* private fields */ }
Expand description

A pool allocator that allocates fixed-size blocks.

Implementations§

Source§

impl<T: Default> SizedPool<T>

Source

pub const fn new() -> Self

Create a new empty pool.

Source

pub unsafe fn add_range(&mut self, range: Range<usize>)

Add a range of blocks to the pool.

range - The range of blocks to add.

§Safety

The caller must ensure that the range is valid and that the blocks are at least the size of T + SizedPoolMeta + Padding for T.

Source

pub fn alloc(&mut self) -> Option<Owned<T>>

Allocate a block from the pool.

Returns Some(Owned<T>) if a block was successfully allocated, otherwise None.

Source

pub fn dealloc(&mut self, block: Owned<T>)

Deallocate a block back to the pool.

block - The block to deallocate.

Trait Implementations§

Source§

impl<T: Default> Default for SizedPool<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> Freeze for SizedPool<T>

§

impl<T> RefUnwindSafe for SizedPool<T>
where T: RefUnwindSafe,

§

impl<T> Send for SizedPool<T>
where T: Send,

§

impl<T> Sync for SizedPool<T>
where T: Sync,

§

impl<T> Unpin for SizedPool<T>
where T: Unpin,

§

impl<T> UnwindSafe for SizedPool<T>
where T: UnwindSafe,

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>,

Source§

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>,

Source§

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.
§

impl<T> ThreadArgument for T
where T: Send + 'static,