Struct xcur::parser::Image [] [src]

pub struct Image {
    pub chunkheader: ChunkHeader,
    pub width: CARD32,
    pub height: CARD32,
    pub xhot: CARD32,
    pub yhot: CARD32,
    pub delay: CARD32,
    pub pixels: Vec<CARD32>,
}

An image

Fields

The chunk header

Image width

Image height

X Hot

Y Hot

Delay in ms

The actual image data

Trait Implementations

impl Debug for Image
[src]

Formats the value using the given formatter.

impl Clone for Image
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more