Trait 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§