Skip to main content

IBinaryOperatorExpression_Node

Trait IBinaryOperatorExpression_Node 

Source
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§

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§