pub trait IBinaryOperatorExpression_Node: IObject {
// Provided methods
fn expr(self) -> Expression { ... }
fn set_expr(self, value: Expression) { ... }
fn op(self) -> BinaryOperatorExpression_Operator { ... }
fn set_op(self, value: BinaryOperatorExpression_Operator) { ... }
fn prev(self) -> BinaryOperatorExpression_Node { ... }
fn set_prev(self, value: BinaryOperatorExpression_Node) { ... }
fn next(self) -> BinaryOperatorExpression_Node { ... }
fn set_next(self, value: BinaryOperatorExpression_Node) { ... }
}Provided Methods§
fn expr(self) -> Expression
fn set_expr(self, value: Expression)
fn op(self) -> BinaryOperatorExpression_Operator
fn set_op(self, value: BinaryOperatorExpression_Operator)
fn prev(self) -> BinaryOperatorExpression_Node
fn set_prev(self, value: BinaryOperatorExpression_Node)
fn next(self) -> BinaryOperatorExpression_Node
fn set_next(self, value: BinaryOperatorExpression_Node)
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.