pub trait NewBitmap: Bitmap + Default {
    fn with_len(len: usize) -> Self;
}
Expand description

A Bitmap that can be created starting from an initial size.

Required Methods

Create a new object based on the specified length in bytes.

Implementations on Foreign Types

Implementors