pub struct DefinitionListItem {
pub end: usize,
pub nodes: Vec<Node>,
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>
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§
Source§impl Debug for DefinitionListItem
impl Debug for DefinitionListItem
Source§impl PartialEq for DefinitionListItem
impl PartialEq for DefinitionListItem
Source§impl<'a> Positioned for DefinitionListItem
impl<'a> Positioned for DefinitionListItem
impl StructuralPartialEq for DefinitionListItem
Auto Trait Implementations§
impl Freeze for DefinitionListItem
impl RefUnwindSafe for DefinitionListItem
impl Send for DefinitionListItem
impl Sync for DefinitionListItem
impl Unpin for DefinitionListItem
impl UnwindSafe for DefinitionListItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more