pub struct StructuredPrinter {
    pub parent_chain: Vec<String>,
    pub siblings: HashMap<usize, Vec<String>>,
    pub data: String,
}
Expand description

Intermediate result of HTML -> Markdown conversion.

Holds context in the form of parent tags and siblings chain and resulting string of markup content with current position.

Fields§

§parent_chain: Vec<String>

Chain of parents leading to upmost tag

§siblings: HashMap<usize, Vec<String>>

Siblings of currently processed tag in order where they’re appearing in html

§data: String

resulting markdown document

Implementations§

Inserts newline

Append string to the end of the printer

Insert string at specified position of printer, adjust position to the end of inserted string

Trait Implementations§

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.