Enum type1_encoding_parser::Value [] [src]

pub enum Value {
    LiteralString(Vec<u8>),
    Name(Vec<u8>),
    Number(String),
    Integer(i64),
    Array(Vec<Value>),
    Procedure(Vec<Value>),
    Operator(String),
    Boolean(bool),
    Dictionary(HashMap<String, Value>),
}

Variants

Trait Implementations

impl Debug for Value
[src]

[src]

Formats the value using the given formatter.