Struct imbl::vector::RRBPool [−][src]
pub struct RRBPool<A> { /* fields omitted */ }Expand description
A memory pool for Vector.
Implementations
pub fn with_sizes(
node_pool_size: usize,
leaf_pool_size: usize,
size_table_pool_size: usize
) -> Self
pub fn with_sizes(
node_pool_size: usize,
leaf_pool_size: usize,
size_table_pool_size: usize
) -> Self
Create a new memory pool with the given sizes for each subpool.
Get the size of the node subpool.
Get the size of the leaf node subpool.
Get the size of the size table subpool.
Trait Implementations
Auto Trait Implementations
impl<A> RefUnwindSafe for RRBPool<A> where
A: RefUnwindSafe,
impl<A> UnwindSafe for RRBPool<A> where
A: RefUnwindSafe + UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more