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§
Required Methods§
sourcefn remaining_source(&self) -> Str<'a>
fn remaining_source(&self) -> Str<'a>
Return the remaining source to be parsed.