[][src]Struct pdf_create::low::Catalog

pub struct Catalog {
    pub version: Option<PdfVersion>,
    pub pages: ObjRef,
    pub page_labels: Option<ObjRef>,
    pub outline: Option<ObjRef>,
}

The catalog/root of the document

Fields

version: Option<PdfVersion>

The PDF Version

pages: ObjRef

Reference to the list of pages

page_labels: Option<ObjRef>

Optional reference to the page labels

outline: Option<ObjRef>

Optional reference to the outline

Trait Implementations

impl Serialize for Catalog[src]

Auto Trait Implementations

impl RefUnwindSafe for Catalog

impl Send for Catalog

impl Sync for Catalog

impl Unpin for Catalog

impl UnwindSafe for Catalog

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.