/// Owned RGBA image pixels read from the system clipboard.
#[derive(Clone, Debug, Eq, PartialEq)]pubstructRgbaImageData{/// Image height in pixels.
pubheight:u32,
/// Pixel data in RGBA byte order.
pubrgba_bytes:Vec<u8>,
/// Image width in pixels.
pubwidth:u32,
}