Trait vhost_user_backend::bitmap::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 ()

§

type InnerBitmap = ()

source§

fn replace(&self, _bitmap: ())

Implementors§