Enum pdf::file::Object [] [src]

pub enum Object {
    Integer(i32),
    RealNumber(f32),
    Boolean(bool),
    String(Vec<u8>),
    HexString(Vec<u8>),
    Stream(Stream),
    Dictionary(Dictionary),
    Array(Vec<Object>),
    Reference(ObjectId),
    Name(String),
    Null,
}

Variants

Each byte is 0-15

Methods

impl Object
[src]

Trait Implementations

impl Clone for Object
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Object
[src]

Formats the value using the given formatter.

impl Display for Object
[src]

Formats the value using the given formatter. Read more