Struct dvi::FontDef [] [src]

pub struct FontDef {
    pub number: u32,
    pub checksum: u32,
    pub scale_factor: u32,
    pub design_size: u32,
    pub directory: Option<Vec<u8>>,
    pub filename: Vec<u8>,
}

A font definition

Fields

The font number of this font (only 1 font per number + once in postamble)

Font checksum

How to scale the font

How to scale the font

Directory of the font file, default if None

Name of the font file

Trait Implementations

impl Debug for FontDef
[src]

Formats the value using the given formatter.

impl Clone for FontDef
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FontDef
[src]

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

This method tests for !=.

impl Eq for FontDef
[src]