pub struct RelationNode<'a> {
pub pair: Pair<'a, Rule>,
pub line_no: i64,
pub adv_extensions: Vec<AdvExt<'a>>,
pub children: Vec<RelationNode<'a>>,
}Expand description
A relation node in the plan tree, before conversion to a Substrait proto.
Fields§
§pair: Pair<'a, Rule>§line_no: i64§adv_extensions: Vec<AdvExt<'a>>§children: Vec<RelationNode<'a>>Implementations§
Source§impl<'a> RelationNode<'a>
impl<'a> RelationNode<'a>
pub fn context(&self) -> ParseContext
Trait Implementations§
Source§impl<'a> Clone for RelationNode<'a>
impl<'a> Clone for RelationNode<'a>
Source§fn clone(&self) -> RelationNode<'a>
fn clone(&self) -> RelationNode<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for RelationNode<'a>
impl<'a> RefUnwindSafe for RelationNode<'a>
impl<'a> !Send for RelationNode<'a>
impl<'a> !Sync for RelationNode<'a>
impl<'a> Unpin for RelationNode<'a>
impl<'a> UnwindSafe for RelationNode<'a>
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