Trait BitmapReplace

Source
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§

Source

fn replace(&self, bitmap: Self::InnerBitmap)

Replace the internal Bitmap

Implementations on Foreign Types§

Source§

impl BitmapReplace for ()

Source§

type InnerBitmap = ()

Source§

fn replace(&self, _bitmap: ())

Implementors§