pub trait ToFormula {
// Required method
fn to_formula(&self, f: &FormulaFactory) -> EncodedFormula;
}
Expand description
Trait for converting a type into a formula of the given FormulaFactory
.
Required Methods§
Sourcefn to_formula(&self, f: &FormulaFactory) -> EncodedFormula
fn to_formula(&self, f: &FormulaFactory) -> EncodedFormula
Converts self
into a formula of f
.