pub unsafe extern "C" fn run_container_grow(
    run: *mut run_container_t,
    min: i32,
    copy: bool
)
Expand description

increase capacity to at least min. Whether the existing data needs to be copied over depends on copy. If “copy” is false, then the new content will be uninitialized, otherwise a copy is made.