Skip to main content

IBinaryOperatorExpression

Trait IBinaryOperatorExpression 

Source
pub trait IBinaryOperatorExpression: IExpression {
    // Provided methods
    fn m_exp1(self) -> Expression { ... }
    fn set_m_exp1(self, value: Expression) { ... }
    fn m_exp2(self) -> Expression { ... }
    fn set_m_exp2(self, value: Expression) { ... }
    fn m_operator(self) -> BinaryOperatorExpression_Operator { ... }
    fn set_m_operator(self, value: BinaryOperatorExpression_Operator) { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§