pub trait NewBitmap: Bitmap + Default {
// Required method
fn with_len(len: usize) -> Self;
}
Available on crate feature
backend-mmap
only.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.
Implementations on Foreign Types§
Implementors§
impl NewBitmap for AtomicBitmap
Available on crate feature
backend-bitmap
only.