pub trait IBinaryOperatorExpression_LinkedList: IObject {
// Provided methods
fn nodes(self) -> BinaryOperatorExpression_Node { ... }
fn set_nodes(self, value: BinaryOperatorExpression_Node) { ... }
fn last(self) -> BinaryOperatorExpression_Node { ... }
fn set_last(self, value: BinaryOperatorExpression_Node) { ... }
fn operator_mask(self) -> BinaryOperatorExpression_Operator { ... }
fn set_operator_mask(self, value: BinaryOperatorExpression_Operator) { ... }
}Provided Methods§
fn nodes(self) -> BinaryOperatorExpression_Node
fn set_nodes(self, value: BinaryOperatorExpression_Node)
fn last(self) -> BinaryOperatorExpression_Node
fn set_last(self, value: BinaryOperatorExpression_Node)
fn operator_mask(self) -> BinaryOperatorExpression_Operator
fn set_operator_mask(self, value: BinaryOperatorExpression_Operator)
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.