pub trait Operand {
    // Provided method
    fn to_string(&self) -> String { ... }
}
Expand description

Trait shared by all Operands

Provided Methods§

fn to_string(&self) -> String

Pretty representation of the operand

Implementors§