Trait boxworks_lang::cst::TreeIter

source ·
pub trait TreeIter<'a>: Iterator<Item = TreeItem<'a, Self::ArgsIter>> {
    type ArgsIter: ArgsIter<'a, TreeIter = Self>;

    // Required method
    fn remaining_source(&self) -> Str<'a>;
}
Expand description

Iterator representation of a CST.

Required Associated Types§

source

type ArgsIter: ArgsIter<'a, TreeIter = Self>

Args iterator associated to this iterator.

Required Methods§

source

fn remaining_source(&self) -> Str<'a>

Return the remaining source to be parsed.

Implementors§