Skip to main content

DocumentEvent

Enum DocumentEvent 

Source
pub enum DocumentEvent {
    Heading {
        level: u8,
        runs: Vec<DocumentTextRun>,
    },
    Paragraph(Vec<DocumentTextRun>),
    Table(DocumentTable),
    List(DocumentList),
    Image(DocumentImage),
    PageBreak,
    ColumnBreak,
    CodeBlock {
        language: Option<String>,
        code: String,
    },
    Section {
        section_type: Option<String>,
    },
    DocumentStart,
    DocumentEnd,
}
Expand description

文档解析过程中产生的事件。

用于流式读取场景,替代一次性返回完整文档模型。

Variants§

§

Heading

遇到标题。

Fields

§level: u8

标题级别。

§runs: Vec<DocumentTextRun>

富文本片段。

§

Paragraph(Vec<DocumentTextRun>)

遇到段落。

§

Table(DocumentTable)

遇到表格。

§

List(DocumentList)

遇到列表。

§

Image(DocumentImage)

遇到图片。

§

PageBreak

遇到分页。

§

ColumnBreak

遇到分栏。

§

CodeBlock

遇到代码块。

Fields

§language: Option<String>

可选语言标记。

§code: String

代码文本。

§

Section

遇到分区。

Fields

§section_type: Option<String>

分区类型。

§

DocumentStart

文档开始。

§

DocumentEnd

文档结束。

Trait Implementations§

Source§

impl Clone for DocumentEvent

Source§

fn clone(&self) -> DocumentEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for DocumentEvent

Source§

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

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

impl PartialEq for DocumentEvent

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for DocumentEvent

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
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,

Source§

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

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.