Enum partiql_ast::ast::FromSource
source · pub enum FromSource {
FromLet(AstNode<FromLet>),
Join(AstNode<Join>),
}
Variants§
FromLet(AstNode<FromLet>)
Join(AstNode<Join>)
<from_source> JOIN [INNER | LEFT | RIGHT | FULL] <from_source> ON
Trait Implementations§
source§impl Clone for FromSource
impl Clone for FromSource
source§fn clone(&self) -> FromSource
fn clone(&self) -> FromSource
Returns a copy 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 moresource§impl Debug for FromSource
impl Debug for FromSource
source§impl PartialEq<FromSource> for FromSource
impl PartialEq<FromSource> for FromSource
source§fn eq(&self, other: &FromSource) -> bool
fn eq(&self, other: &FromSource) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Visit for FromSource
impl Visit for FromSource
impl StructuralPartialEq for FromSource
Auto Trait Implementations§
impl RefUnwindSafe for FromSource
impl Send for FromSource
impl Sync for FromSource
impl Unpin for FromSource
impl UnwindSafe for FromSource
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