Trait Expression

Source
pub trait Expression {
    // Required method
    fn write(&self, b: &mut CodeBuffer);
}
Expand description

Code within a single line.

Required Methods§

Source

fn write(&self, b: &mut CodeBuffer)

Writes the code to the buffer b.

Implementors§