Trait CmtAST

Source
pub trait CmtAST {
    // Required method
    fn ast(self) -> AST;
}
Expand description

Things that can be converted into AST in Cement Commonly used in method parameters so that it can receive any value in hardware

Required Methods§

Source

fn ast(self) -> AST

Implementations on Foreign Types§

Source§

impl CmtAST for bool

Source§

fn ast(self) -> AST

Source§

impl CmtAST for i8

Source§

fn ast(self) -> AST

Source§

impl CmtAST for i16

Source§

fn ast(self) -> AST

Source§

impl CmtAST for i32

Source§

fn ast(self) -> AST

Source§

impl CmtAST for i64

Source§

fn ast(self) -> AST

Source§

impl CmtAST for i128

Source§

fn ast(self) -> AST

Source§

impl CmtAST for isize

Source§

fn ast(self) -> AST

Source§

impl CmtAST for u8

Source§

fn ast(self) -> AST

Source§

impl CmtAST for u16

Source§

fn ast(self) -> AST

Source§

impl CmtAST for u32

Source§

fn ast(self) -> AST

Source§

impl CmtAST for u64

Source§

fn ast(self) -> AST

Source§

impl CmtAST for u128

Source§

fn ast(self) -> AST

Source§

impl CmtAST for usize

Source§

fn ast(self) -> AST

Implementors§