Struct pdf_writer::writers::Catalog

source ·
pub struct Catalog<'a> { /* private fields */ }
Expand description

Writer for a document catalog dictionary.

This struct is created by Pdf::catalog.

Implementations§

source§

impl<'a> Catalog<'a>

source

pub fn pages(&mut self, id: Ref) -> &mut Self

Write the /Pages attribute pointing to the root page tree.

source

pub fn page_layout(&mut self, layout: PageLayout) -> &mut Self

Write the /PageLayout attribute to determine how the viewer will display the document’s pages.

source

pub fn page_labels(&mut self) -> NumberTree<'_, Ref>

Start writing the /PageLabels number tree. PDF 1.3+.

source

pub fn page_mode(&mut self, mode: PageMode) -> &mut Self

Write the /PageMode attribute to set which chrome elements the viewer should show.

source

pub fn viewer_preferences(&mut self) -> ViewerPreferences<'_>

Start writing the /ViewerPreferences dictionary. PDF 1.2+.

source

pub fn names(&mut self) -> Names<'_>

Start writing the /Names dictionary. PDF 1.2+.

source

pub fn destinations(&mut self, id: Ref) -> &mut Self

Write the /Dests attribute pointing to a named destinations dictionary. PDF 1.1+.

source

pub fn outlines(&mut self, id: Ref) -> &mut Self

Write the /Outlines attribute pointing to the root outline dictionary.

source

pub fn struct_tree_root(&mut self) -> StructTreeRoot<'_>

Start writing the /StructTreeRoot attribute to specify the root of the document’s structure tree. PDF 1.3+.

source

pub fn mark_info(&mut self) -> MarkInfo<'_>

Start writing the /MarkInfo dictionary to specify this document’s conformance with the tagged PDF specification. PDF 1.4+.

source

pub fn lang(&mut self, lang: TextStr<'_>) -> &mut Self

Write the /Lang attribute to specify the language of the document as a RFC 3066 language tag. PDF 1.4+.

source

pub fn version(&mut self, major: u8, minor: u8) -> &mut Self

Write the /Version attribute to override the PDF version stated in the header. PDF 1.4+.

source

pub fn metadata(&mut self, id: Ref) -> &mut Self

Write the /Metadata attribute to specify the document’s metadata. PDF 1.4+.

The reference shall point to a metadata stream.

source

pub fn extensions(&mut self) -> TypedDict<'_, DeveloperExtension<'_>>

Start writing the /Extensions dictionary to specify which PDF extensions are in use in the document. PDF 1.5+.

The dictionary maps a vendor name to an extension dictionary. The Adobe PDF extensions use the Name prefix ADBE.

source

pub fn separation_info(&mut self) -> SeparationInfo<'_>

Start writing the /SeparationInfo dictionary to specify which separation colors are in use on the page and how it relates to other pages in the document. PDF 1.3+.

source

pub fn output_intents(&mut self) -> TypedArray<'_, Dict<'_>>

Start writing the /OutputIntents array to specify the output destinations for the document. PDF 1.4+.

Each entry in the array is an output intent dictionary.

Methods from Deref<Target = Dict<'a>>§

source

pub fn len(&self) -> i32

The number of written pairs.

source

pub fn is_empty(&self) -> bool

Whether no pairs have been written so far.

source

pub fn insert(&mut self, key: Name<'_>) -> Obj<'_>

Start writing a pair with an arbitrary value.

source

pub fn pair<T: Primitive>(&mut self, key: Name<'_>, value: T) -> &mut Self

Write a pair with a primitive value.

This is a shorthand for dict.insert(key).primitive(value).

source

pub fn pairs<'n, T: Primitive>( &mut self, pairs: impl IntoIterator<Item = (Name<'n>, T)> ) -> &mut Self

Write a sequence of pairs with primitive values.

Trait Implementations§

source§

impl<'a> Deref for Catalog<'a>

§

type Target = Dict<'a>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a> DerefMut for Catalog<'a>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<'a, 'any> Rewrite<'a> for Catalog<'any>

§

type Output = Catalog<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for Catalog<'a>

source§

fn start(obj: Obj<'a>) -> Self

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for Catalog<'a>

§

impl<'a> RefUnwindSafe for Catalog<'a>

§

impl<'a> Send for Catalog<'a>

§

impl<'a> Sync for Catalog<'a>

§

impl<'a> Unpin for Catalog<'a>

§

impl<'a> !UnwindSafe for Catalog<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Finish for T

source§

fn finish(self)

Does nothing but move self, equivalent to drop.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.