pub trait Realloc {
// Required method
fn realloc(&mut self, new_size: usize);
}Expand description
A trait allowing for efficient reallocation.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".