pub trait WithBitmapSlice<'a> {
    type S: BitmapSlice;
}
Expand description

Trait implemented by types that support creating BitmapSlice objects.

Required Associated Types

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.

A Bitmap and BitmapSlice implementation for Option<B>.

Implementors