[][src]Trait alder::Ast

pub trait Ast: Sized {
    fn parse(iter: &mut impl Iterator<Item = Node>) -> Option<Self>;
}

Required methods

fn parse(iter: &mut impl Iterator<Item = Node>) -> Option<Self>

Loading content...

Implementations on Foreign Types

impl<T> Ast for Vec<T> where
    T: Ast
[src]

impl<T> Ast for Box<T> where
    T: Ast
[src]

Loading content...

Implementors

Loading content...