Trait tex_parser::ast::SplitCharTokensIterHelper[][src]

pub trait SplitCharTokensIterHelper: Sized + Sealed {
    type Item;
    fn next<I: Iterator<Item = Self>>(
        this: &mut SplitCharTokensIter<I>
    ) -> Option<Self::Item>; }

Associated Types

Loading content...

Required methods

fn next<I: Iterator<Item = Self>>(
    this: &mut SplitCharTokensIter<I>
) -> Option<Self::Item>
[src]

Loading content...

Implementors

impl SplitCharTokensIterHelper for Token[src]

type Item = Token

impl<'a> SplitCharTokensIterHelper for &'a Token[src]

type Item = Cow<'a, Token>

Loading content...