Enum pdf_writer::types::StructRole

source ·
pub enum StructRole {
Show 48 variants Document, Part, Art, Sect, Div, BlockQuote, Caption, TOC, TOCI, Index, NonStruct, Private, P, H1, H2, H3, H4, H5, H6, L, LI, Lbl, LBody, Table, TR, TH, TD, THead, TBody, TFoot, Span, Quote, Note, Reference, BibEntry, Code, Link, Annot, Ruby, Warichu, RB, RT, RP, WT, WP, Figure, Formula, Form,
}
Expand description

Role the structure element fulfills in the document.

These are the predefined standard roles. The writer may write their own and then provide a mapping. PDF 1.4+.

Variants§

§

Document

The whole document.

§

Part

A part of a document that may contain multiple articles or sections.

§

Art

An article with largely self-contained content.

§

Sect

Section of a larger document.

§

Div

Generic subdivision.

§

BlockQuote

A paragraph-level quote.

§

Caption

An image or figure caption.

§

TOC

Table of contents.

§

TOCI

Item in the table of contents.

§

Index

Index of the key terms in the document.

§

NonStruct

Element only present for grouping purposes that shall not be exported.

§

Private

Element present only for use by the writer and associated products.

§

P

A paragraph

§

H1

First-level heading.

§

H2

Second-level heading.

§

H3

Third-level heading.

§

H4

Fourth-level heading.

§

H5

Fifth-level heading.

§

H6

Sixth-level heading.

§

L

A list.

§

LI

A list item.

§

Lbl

Label for a list item.

§

LBody

Description of the list item.

§

Table

A table.

§

TR

A table row.

§

TH

A table header cell.

§

TD

A table data cell.

§

THead

A table header row group.

§

TBody

A table data row group.

§

TFoot

A table footer row group.

§

Span

A generic inline element.

§

Quote

An inline quotation.

§

Note

A foot- or endnote.

§

Reference

A reference to elsewhere in the document.

§

BibEntry

A reference to an external document.

§

Code

Computer code.

A link.

§

Annot

An association between an annotation and the content it belongs to. PDF 1.5+

§

Ruby

Ruby annotation for CJK text. PDF 1.5+

§

Warichu

Warichu annotation for CJK text. PDF 1.5+

§

RB

Base text of a Ruby annotation. PDF 1.5+

§

RT

Annotation text of a Ruby annotation. PDF 1.5+

§

RP

Punctuation of a Ruby annotation. PDF 1.5+

§

WT

Text of a Warichu annotation. PDF 1.5+

§

WP

Punctuation of a Warichu annotation. PDF 1.5+

§

Figure

Item of graphical content.

§

Formula

Mathematical formula.

§

Form

Form widget.

Trait Implementations§

source§

impl Clone for StructRole

source§

fn clone(&self) -> StructRole

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for StructRole

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for StructRole

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for StructRole

source§

fn eq(&self, other: &StructRole) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for StructRole

source§

impl Eq for StructRole

source§

impl StructuralPartialEq for StructRole

Auto Trait Implementations§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.