Trait ezno_parser::generator_helpers::IntoAST

source ·
pub trait IntoAST<T> {
    // Required method
    fn into_ast(self) -> T;
}
Expand description

A trait which means that self can be pushed to a [TokenSender]

Required Methods§

source

fn into_ast(self) -> T

Implementations on Foreign Types§

source§

impl IntoAST<Expression> for f64

source§

impl IntoAST<Expression> for usize

source§

impl<'a> IntoAST<VariableIdentifier> for &'a str

source§

impl<'a> IntoAST<Expression> for &'a str

source§

impl<'a> IntoAST<PropertyReference> for &'a str

Implementors§