[][src]Trait parse_wiki_text::Positioned

pub trait Positioned {
    fn end(&self) -> usize;
fn start(&self) -> usize; }

Element that has a start position and end position.

Required methods

fn end(&self) -> usize

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

fn start(&self) -> usize

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

Loading content...

Implementors

impl<'a> Positioned for Node<'a>[src]

impl<'a> Positioned for DefinitionListItem<'a>[src]

impl<'a> Positioned for ListItem<'a>[src]

impl<'a> Positioned for Parameter<'a>[src]

impl<'a> Positioned for TableCaption<'a>[src]

impl<'a> Positioned for TableCell<'a>[src]

impl<'a> Positioned for TableRow<'a>[src]

Loading content...