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

pub struct FontSet {
    pub header: Header,
    pub names: Vec<String>,
    pub strings: Strings,
    pub encodings: Vec<Encoding>,
    pub char_sets: Vec<CharSet>,
    pub char_strings: Vec<CharStrings>,
    pub global_dictionaries: Vec<Operations>,
    pub global_subroutines: Subroutines,
    pub local_dictionaries: Vec<Operations>,
    pub local_subroutines: Vec<Subroutines>,
}

A font set.

Fields

header: Header names: Vec<String> strings: Strings encodings: Vec<Encoding> char_sets: Vec<CharSet> char_strings: Vec<CharStrings> global_dictionaries: Vec<Operations> global_subroutines: Subroutines local_dictionaries: Vec<Operations> local_subroutines: Vec<Subroutines>

Trait Implementations

impl Debug for FontSet
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for FontSet
[src]

fn clone(&self) -> FontSet

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Value for FontSet
[src]

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

Read a value.