Struct ilda::data::Header [] [src]

pub struct Header {
    pub reserved: u16,
    pub format_code: u8,
    pub name: Option<String>,
    pub company_name: Option<String>,
    pub record_count: u16,
    pub number: u16,
    pub total_frames: u16,
    pub projector_number: u8,
    pub reserved_2: u8,
}

A Raw ILDA header.

Fields

The first reserved portion of the ILDA header.

The format, or type, of the header.

The name of the frame or color palette.

The name of the company.

The number of records (eg. points) following this header. If 0, this is the EOF header.

If the frame is part of an animation, this is the frame number within the animation sequence. If this is a color palette header, it's the palette number.

The total number of frames within this sequence. If this is a color palette, this shall be 0.

The projector to display this frame on.

The final reserved portion.

Methods

impl Header
[src]

Returns the format of the header.

Trait Implementations

impl Clone for Header
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Header
[src]

Formats the value using the given formatter.