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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.