Enum lopdf::Object [] [src]

pub enum Object {
    Null,
    Boolean(bool),
    Integer(i64),
    Real(f64),
    Name(String),
    String(Vec<u8>, StringFormat),
    Array(Vec<Object>),
    Dictionary(Dictionary),
    Stream(Stream),
    Reference(ObjectId),
}

basic types of PDF objects

Variants

Methods

impl Object
[src]

Trait Implementations

impl Debug for Object
[src]

Formats the value using the given formatter.

impl From<bool> for Object
[src]

Performs the conversion.

impl From<i64> for Object
[src]

Performs the conversion.

impl From<f64> for Object
[src]

Performs the conversion.

impl From<Vec<Object>> for Object
[src]

Performs the conversion.

impl From<Dictionary> for Object
[src]

Performs the conversion.

impl From<Stream> for Object
[src]

Performs the conversion.