Struct sfnt::Record[]

pub struct Record<'a> {
    pub tag: &'a str,
    pub checksum: u32,
    pub offset: u32,
    pub length: u32,
}

An SFNT file table record.

Fields

The name of the table.

The checksum of the the table.

The byte offset of the table in the SFNT file.

The byte length of the table.

Trait Implementations

impl<'a> Copy for Record<'a>
[src]

impl<'a> Clone for Record<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for Record<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for Record<'a>
[src]

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

This method tests for !=.

impl<'a> Eq for Record<'a>
[src]

impl<'a> Extract<'a, ()> for Record<'a>

Extracts a value of this type from the supplied stream of bytes. Read more

impl<'a> Span for Record<'a>

SPAN: usize = 16

The number of bytes spanned by values of this type.

Auto Trait Implementations

impl<'a> Send for Record<'a>

impl<'a> Sync for Record<'a>