Struct Destination

Source
pub struct Destination<'a> { /* private fields */ }
Expand description

Writer for a destination array.

A dictionary mapping to this struct is created by Chunk::destinations. This struct is also created by Action::destination.

Implementations§

Source§

impl Destination<'_>

Source

pub fn page(self, page: Ref) -> Self

The target page. Required.

Source

pub fn xyz(self, left: f32, top: f32, zoom: Option<f32>)

Write the /XYZ command which skips to the specified coordinated.

Source

pub fn fit(self)

Write the /Fit command which fits all of the referenced page on screen.

Source

pub fn fit_horizontal(self, top: f32)

Write the /FitH command which fits the referenced page to the screen width and skips to the specified offset.

Source

pub fn fit_vertical(self, left: f32)

Write the /FitV command which fits the referenced page to the screen height and skips to the specified offset.

Source

pub fn fit_rect(self, rect: Rect)

Write the /FitR command which fits the rectangle argument on the screen.

Source

pub fn fit_bounding_box(self)

Write the /FitB command which fits all of the referenced page’s content on screen. PDF 1.1+.

Source

pub fn fit_bounding_box_horizontal(self, top: f32)

Write the /FitBH command which fits the referenced page’s content to the screen width and skips to the specified offset. PDF 1.1+.

Source

pub fn fit_bounding_box_vertical(self, left: f32)

Write the /FitBV command which fits the referenced page’s content to the screen height and skips to the specified offset. PDF 1.1+.

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

Source

pub fn len(&self) -> i32

The number of written items.

Source

pub fn is_empty(&self) -> bool

Whether no items have been written so far.

Source

pub fn push(&mut self) -> Obj<'_>

Start writing an arbitrary item.

Source

pub fn item<T: Primitive>(&mut self, value: T) -> &mut Self

Write an item with a primitive value.

This is a shorthand for array.push().primitive(value).

Source

pub fn items<T: Primitive>( &mut self, values: impl IntoIterator<Item = T>, ) -> &mut Self

Write a sequence of items with primitive values.

Trait Implementations§

Source§

impl<'a> Deref for Destination<'a>

Source§

type Target = Array<'a>

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl<'a> DerefMut for Destination<'a>

Source§

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

Mutably dereferences the value.
Source§

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

Source§

type Output = Destination<'a>

The writer with the rewritten lifetime.
Source§

impl<'a> Writer<'a> for Destination<'a>

Source§

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

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for Destination<'a>

§

impl<'a> RefUnwindSafe for Destination<'a>

§

impl<'a> Send for Destination<'a>

§

impl<'a> Sync for Destination<'a>

§

impl<'a> Unpin for Destination<'a>

§

impl<'a> !UnwindSafe for Destination<'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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

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>,

Source§

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.