pub trait BitmapSlice: Bitmap + Clone + Debug + for<'a> WithBitmapSlice<'a, S = Self> { }
Expand description

Trait used to represent that a BitmapSlice is a Bitmap itself, but also satisfies the restriction that slices created from it have the same type as Self.

Implementations on Foreign Types§

source§

impl BitmapSlice for ()

source§

impl<B: BitmapSlice> BitmapSlice for Option<B>

Implementors§