[][src]Trait liquid::reflection::ParserReflection

pub trait ParserReflection {
    fn blocks<'r>(
        &'r self
    ) -> Box<dyn Iterator<Item = &dyn BlockReflection> + 'r>;
fn tags<'r>(&'r self) -> Box<dyn Iterator<Item = &dyn TagReflection> + 'r>;
fn filters<'r>(
        &'r self
    ) -> Box<dyn Iterator<Item = &dyn FilterReflection> + 'r>;
fn partials<'r>(&'r self) -> Box<dyn Iterator<Item = &str> + 'r>; }

Required methods

fn blocks<'r>(&'r self) -> Box<dyn Iterator<Item = &dyn BlockReflection> + 'r>

fn tags<'r>(&'r self) -> Box<dyn Iterator<Item = &dyn TagReflection> + 'r>

fn filters<'r>(&'r self) -> Box<dyn Iterator<Item = &dyn FilterReflection> + 'r>

fn partials<'r>(&'r self) -> Box<dyn Iterator<Item = &str> + 'r>

Loading content...

Implementors

impl ParserReflection for Parser[src]

impl<P> ParserReflection for ParserBuilder<P> where
    P: PartialCompiler
[src]

Loading content...