Struct immeta::formats::gif::ImageDescriptor [] [src]

pub struct ImageDescriptor {
    pub left: u16,
    pub top: u16,
    pub width: u16,
    pub height: u16,
    pub local_color_table: Option<ColorTable>,
    pub interlace: bool,
}

Contains metadata about an image block, i.e. a single frame of a GIF image.

Fields

Offset of the image data from the left boundary of the logical screen.

Offset of the image data from the top boundary of the logical screen.

Width of the image data.

Height of the image data.

Information about local color table, if it is present.

Whether the image is interlaced.

Trait Implementations

impl Clone for ImageDescriptor
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ImageDescriptor
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for ImageDescriptor
[src]

impl Debug for ImageDescriptor
[src]

[src]

Formats the value using the given formatter. Read more