pub struct DefinitionListItem<'a> {
    pub end: usize,
    pub nodes: Vec<Node<'a>>,
    pub start: usize,
    pub type_: DefinitionListItemType,
}
Expand description

List item of a definition list.

Fields

end: usize

The byte position in the wiki text where the element ends.

nodes: Vec<Node<'a>>

The content of the element.

start: usize

The byte position in the wiki text where the element starts.

type_: DefinitionListItemType

The type of list item.

Trait Implementations

Formats the value using the given formatter. Read more
The byte position in the wiki text where the element ends.
The byte position in the wiki text where the element starts.

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.