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
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.