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: usizeThe byte position in the wiki text where the element ends.
nodes: Vec<Node<'a>>The content of the element.
start: usizeThe byte position in the wiki text where the element starts.
type_: DefinitionListItemTypeThe type of list item.
Trait Implementations§
Source§impl<'a> Debug for DefinitionListItem<'a>
impl<'a> Debug for DefinitionListItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for DefinitionListItem<'a>
impl<'a> RefUnwindSafe for DefinitionListItem<'a>
impl<'a> Send for DefinitionListItem<'a>
impl<'a> Sync for DefinitionListItem<'a>
impl<'a> Unpin for DefinitionListItem<'a>
impl<'a> UnwindSafe for DefinitionListItem<'a>
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