pub trait GetPixel {
type Color: PixelColor;
// Required method
fn pixel(&self, p: Point) -> Option<Self::Color>;
}
Expand description
Pixel getter.
Required Associated Types§
Sourcetype Color: PixelColor
type Color: PixelColor
The color type.