[][src]Struct ico_memory::mem::memory_manager::MemoryManager

pub struct MemoryManager { /* fields omitted */ }

Methods

impl MemoryManager[src]

pub const unsafe fn from_static(
    slice_64: *mut AtomicUsize,
    capacity_64: usize,
    slice_128: *mut AtomicUsize,
    capacity_128: usize,
    slice_256: *mut AtomicUsize,
    capacity_256: usize,
    slice_512: *mut AtomicUsize,
    capacity_512: usize,
    slice_1024: *mut AtomicUsize,
    capacity_1024: usize,
    slice_2048: *mut AtomicUsize,
    capacity_2048: usize
) -> MemoryManager
[src]

Trait Implementations

impl GlobalAlloc for MemoryManager[src]

unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8[src]

SSE zero using __m128. Beats rust and naive for loop.

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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]