[][src]Struct context_allocator::arena_memory_source::ArenaMemorySource

pub struct ArenaMemorySource<MS: MemorySource> { /* fields omitted */ }

An arena memory source.

Methods

impl<MS: MemorySource> ArenaMemorySource<MS>[src]

pub fn new(
    block_size: NonZeroUsize,
    number_of_blocks: NonZeroUsize,
    memory_source: MS
) -> Result<Self, AllocErr>
[src]

Creates a new instance.

block_size must be at least XXXX to be useful.

Trait Implementations

impl<MS: MemorySource> MemorySource for ArenaMemorySource<MS>[src]

impl<MS: MemorySource> Drop for ArenaMemorySource<MS>[src]

impl<MS: Debug + MemorySource> Debug for ArenaMemorySource<MS>[src]

Auto Trait Implementations

impl<MS> !Send for ArenaMemorySource<MS>

impl<MS> !Sync for ArenaMemorySource<MS>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.