ag-clipboard 0.15.1

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Owned RGBA image pixels read from the system clipboard.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct RgbaImageData {
    /// Image height in pixels.
    pub height: u32,
    /// Pixel data in RGBA byte order.
    pub rgba_bytes: Vec<u8>,
    /// Image width in pixels.
    pub width: u32,
}