Enum hir::ir::Expression [] [src]

pub enum Expression {
    FunctionCall(FunctionCall),
    Literal(Literal),
}

Variants

Trait Implementations

impl Debug for Expression
[src]

Formats the value using the given formatter. Read more

impl Clone for Expression
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Expression
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl HeapSizeOf for Expression
[src]

Measure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of:: measures, more or less); that space is handled by the implementation of HeapSizeOf for Box below. Read more

impl IrNode for Expression
[src]

impl From<FunctionCall> for Expression
[src]

Performs the conversion.

impl From<Literal> for Expression
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Expression

impl Sync for Expression