//! `Drawable` trait and helpers
usecrate::geometry::Point;usecrate::pixelcolor::PixelColor;/// A single pixel
#[derive(Copy, Clone, Debug, PartialEq, Eq)]pubstructPixel<C: PixelColor>(pub Point, pub C);/// Marks an object as "drawable". Must be implemented for all graphics objects
pubtraitDrawable{}