pub trait BitmapReplace: Bitmap {
type InnerBitmap: MemRegionBitmap;
// Required method
fn replace(&self, bitmap: Self::InnerBitmap);
}
Expand description
A Bitmap
with an internal Bitmap
that can be replaced at runtime
Required Associated Types§
Required Methods§
Sourcefn replace(&self, bitmap: Self::InnerBitmap)
fn replace(&self, bitmap: Self::InnerBitmap)
Replace the internal Bitmap