pub trait BitmapRef {
type Buffer: BufferType;
// Required method
fn bitmap_ref(&self) -> &Bitmap<Self::Buffer>;
}Expand description
An immutable reference to a bitmap.
Required Associated Types§
sourcetype Buffer: BufferType
type Buffer: BufferType
The buffer type of the bitmap.
Required Methods§
sourcefn bitmap_ref(&self) -> &Bitmap<Self::Buffer>
fn bitmap_ref(&self) -> &Bitmap<Self::Buffer>
Returns a reference to an immutable Bitmap.