pub trait NewBitmap: Bitmap + Default { // Required method fn with_len(len: usize) -> Self; }
A Bitmap that can be created starting from an initial size.
Bitmap
Create a new object based on the specified length in bytes.