Struct pdf_writer::writers::StructElement

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

Writer for a structure element dictionary. PDF 1.3+

Implementations§

source§

impl<'a> StructElement<'a>

source

pub fn kind(&mut self, role: StructRole) -> &mut Self

Write the /S attribute to specify the role of this structure element. Required if no custom type is specified with Self::custom_kind.

source

pub fn custom_kind(&mut self, name: Name<'_>) -> &mut Self

Write the /S attribute to specify the role of this structure element as a custom name. Required if no standard type is specified with Self::kind.

source

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

Write the /P attribute to specify the parent of this structure element. Required.

source

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

Write the /Pg attribute to specify the page some or all of this structure element is located on.

source

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

Write the /K attribute to reference the immediate child of this element.

source

pub fn marked_content_child(&mut self) -> MarkedRef<'_>

Start writing the /K attribute to reference the immediate marked content child of this element.

source

pub fn object_child(&mut self) -> ObjectRef<'_>

Start writing the /K attribute to reference the immediate object child of this element.

source

pub fn children(&mut self) -> StructChildren<'_>

Start writing the /K attribute to specify the children elements and associated marked content sequences.

source

pub fn attributes(&mut self) -> TypedArray<'_, Attributes<'_>>

Start writing the /A attribute to specify the attributes of this structure element.

source

pub fn attribute_class(&mut self) -> TypedArray<'_, Name<'_>>

Start writing the /C attribute to associate the structure element with an attribute class.

source

pub fn revision(&mut self, revision: i32) -> &mut Self

Write the /R attribute to specify the revision number, starting at 0.

source

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

Write the /T attribute to set a title.

source

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

Write the /Lang attribute to set a language. PDF 1.4+

source

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

Write the /Alt attribute to provide a description of the structure element.

source

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

Write the /E attribute to set the expanded form of the abbreviation in this structure element. PDF 1.5+

source

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

Write the /ActualText attribute to set the exact text replacement. PDF 1.4+

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 StructElement<'a>

§

type Target = Dict<'a>

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<'a> DerefMut for StructElement<'a>

source§

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

Mutably dereferences the value.
source§

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

§

type Output = StructElement<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for StructElement<'a>

source§

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

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for StructElement<'a>

§

impl<'a> RefUnwindSafe for StructElement<'a>

§

impl<'a> Send for StructElement<'a>

§

impl<'a> Sync for StructElement<'a>

§

impl<'a> Unpin for StructElement<'a>

§

impl<'a> !UnwindSafe for StructElement<'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.