Struct postscript::compact::FontSet [] [src]

pub struct FontSet {
    pub header: Header,
    pub names: Vec<String>,
    pub top_dictionaries: Vec<Operations>,
    pub strings: Strings,
    pub global_subroutines: Subroutines,
    pub encodings: Vec<Encoding>,
    pub charsets: Vec<Charset>,
    pub charstrings: Vec<Charstrings>,
    pub private_dictionaries: Vec<Operations>,
    pub local_subroutines: Vec<Subroutines>,
}

A font set.

Fields

header: Header names: Vec<String> top_dictionaries: Vec<Operations> strings: Strings global_subroutines: Subroutines encodings: Vec<Encoding> charsets: Vec<Charset> charstrings: Vec<Charstrings> private_dictionaries: Vec<Operations> local_subroutines: Vec<Subroutines>

Methods

impl FontSet
[src]

fn read<T: Read + Seek>(reader: &mut T) -> Result<Self>

Parse a font set.

Trait Implementations

impl Value for FontSet
[src]

fn read<T: Tape>(tape: &mut T) -> Result<Self>

Read a value.