pub trait NewBitmap: Bitmap + Default {
// Required method
fn with_len(len: usize) -> Self;
}
Expand description
A Bitmap
that can be created starting from an initial size.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait NewBitmap: Bitmap + Default {
// Required method
fn with_len(len: usize) -> Self;
}
A Bitmap
that can be created starting from an initial size.