[][src]Struct rendy_memory::DynamicAllocator

pub struct DynamicAllocator<B: Backend> { /* fields omitted */ }

No-fragmentation allocator. Suitable for any type of small allocations. Every freed block can be reused.

Methods

impl<B> DynamicAllocator<B> where
    B: Backend
[src]

pub fn new(
    memory_type: MemoryTypeId,
    memory_properties: Properties,
    config: DynamicConfig
) -> Self
[src]

Create new DynamicAllocator for memory_type with memory_properties specified, with DynamicConfig provided.

pub fn max_allocation(&self) -> u64[src]

Maximum allocation size.

pub fn dispose(self)[src]

Perform full cleanup of the memory allocated.

Trait Implementations

impl<B> Allocator<B> for DynamicAllocator<B> where
    B: Backend
[src]

type Block = DynamicBlock<B>

Block type returned by allocator.

impl<B> Send for DynamicAllocator<B> where
    B: Backend
[src]

impl<B> Sync for DynamicAllocator<B> where
    B: Backend
[src]

impl<B: Debug + Backend> Debug for DynamicAllocator<B>[src]

Auto Trait Implementations

impl<B> Unpin for DynamicAllocator<B>

impl<B> UnwindSafe for DynamicAllocator<B> where
    <B as Backend>::Memory: RefUnwindSafe + UnwindSafe

impl<B> RefUnwindSafe for DynamicAllocator<B> where
    <B as Backend>::Memory: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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