pub enum Node {
Selector(Box<SelectorNode>),
Pipeline(Box<Node>, Box<Node>),
SetOperation(Box<SetOperationNode>),
IndexSelection(Box<Node>, Box<IndexNode>),
FunctionCall(Box<Node>, FunctionNode),
}
Expand description
Top-level node type.
Variants§
Selector(Box<SelectorNode>)
Selector node
Pipeline(Box<Node>, Box<Node>)
Pipeline operation: left operand > right operand
SetOperation(Box<SetOperationNode>)
Set operation node
IndexSelection(Box<Node>, Box<IndexNode>)
Index selection: node with index selector
FunctionCall(Box<Node>, FunctionNode)
Function call: node with function node
Trait Implementations§
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more