[][src]Struct printpdf::types::pdf_page::PdfPageReference

pub struct PdfPageReference {
    pub document: Weak<RefCell<PdfDocument>>,
    pub page: PdfPageIndex,
}

A "reference" to the current page, allows for inner mutability but only inside this library

Fields

document: Weak<RefCell<PdfDocument>>

A weak reference to the document, for inner mutability

page: PdfPageIndex

The index of the page this layer is on

Implementations

impl PdfPageReference[src]

pub fn add_layer<S>(&self, layer_name: S) -> PdfLayerReference where
    S: Into<String>, 
[src]

Adds a page and returns the index of the currently added page

pub fn get_layer(&self, layer: PdfLayerIndex) -> PdfLayerReference[src]

Validates that a layer is present and returns a reference to it

Auto Trait Implementations

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.