[][src]Struct svo::Arena

pub struct Arena<T: Copy> { /* fields omitted */ }

Implementations

impl<T: Copy> Arena<T>[src]

pub fn new() -> Arena<T>[src]

pub fn alloc(&mut self, len: u32) -> ArenaHandle<T>[src]

pub fn free(&mut self, handle: ArenaHandle<T>)[src]

pub fn realloc(&mut self, node: ArenaHandle<T>, new_mask: u8)[src]

pub fn total_data_size(&self) -> usize[src]

pub fn copy_data_into_slice(&self, slice: &mut [u8])[src]

Trait Implementations

impl<T: Copy> Index<ArenaHandle<T>> for Arena<T>[src]

type Output = NodeSlot<T>

The returned type after indexing.

impl<T: Copy> IndexMut<ArenaHandle<T>> for Arena<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Arena<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Arena<T> where
    T: Send
[src]

impl<T> Sync for Arena<T> where
    T: Sync
[src]

impl<T> Unpin for Arena<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Arena<T> where
    T: UnwindSafe
[src]

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.