[][src]Trait byte_pool::Realloc

pub trait Realloc {
    fn realloc(&mut self, new_size: usize);
}

A trait allowing for efficient reallocation.

Required methods

fn realloc(&mut self, new_size: usize)

Loading content...

Implementations on Foreign Types

impl<T: Default + Clone> Realloc for Vec<T>[src]

impl<K, V, S> Realloc for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src]

Loading content...

Implementors

Loading content...