pub trait ResizableBitmap { // Required method fn resize(&mut self, new_size: usize); }
A bitmap that can be resized.
Resizes the bitmap to be new_size bits long. Inserts zeros if the bitmap grows.
new_size