usecrate::CodeBuffer;/// Code within a single line.
pubtraitExpression{/// Writes the code to the buffer `b`.
fnwrite(&self, b:&mut CodeBuffer);/// Renders the expression to a string.
fnto_code(&self)-> String{letmut b =CodeBuffer::default();self.write(&mut b);
b.into()}}