Trait Grow

Source
pub trait Grow: Debug {
    // Required method
    fn next_capacity<T, I: Index>(prev: I, minimum: I) -> I;
}
Expand description

Growth behavior for collections which have exceeded their available storage

Required Methods§

Source

fn next_capacity<T, I: Index>(prev: I, minimum: I) -> I

Calculate the next capacity to request from the allocator

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§