//! Image object
modimage1bpp;modimage8bpp;/// Image trait
pubtraitImage<'a> {/// Create a new image with given pixel data, width and height
fnnew(imagedata:&'a [u8], width:u32, height:u32)->Self;}pubuseself::image1bpp::Image1BPP;pubuseself::image8bpp::Image8BPP;