Enum lopdf_bugfix_19072017::Object [] [src]

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

Basic PDF object types defined in an enum.

Variants

Methods

impl Object
[src]

impl Object
[src]

Trait Implementations

impl Debug for Object
[src]

Formats the value using the given formatter.

impl Clone for Object
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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<String> for Object
[src]

Performs the conversion.

impl<'a> From<&'a str> 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.

impl From<DateTime<Local>> for Object
[src]

Performs the conversion.

impl From<DateTime<UTC>> for Object
[src]

Performs the conversion.