Trait vm_memory::bitmap::WithBitmapSlice [−][src]
pub trait WithBitmapSlice<'a> { type S: BitmapSlice; }
Expand description
Trait implemented by types that support creating BitmapSlice
objects.
Associated Types
type S: BitmapSlice
type S: BitmapSlice
Type of the bitmap slice.
Implementations on Foreign Types
A no-op Bitmap
implementation that can be provided for backends that do not actually
require the tracking functionality.
type S = Self
A Bitmap
and BitmapSlice
implementation for Option<B>
.