Struct sqlparser::ast::TableWithJoins  
source · pub struct TableWithJoins {
    pub relation: TableFactor,
    pub joins: Vec<Join>,
}Fields§
§relation: TableFactor§joins: Vec<Join>Trait Implementations§
source§impl Clone for TableWithJoins
 
impl Clone for TableWithJoins
source§fn clone(&self) -> TableWithJoins
 
fn clone(&self) -> TableWithJoins
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 TableWithJoins
 
impl Debug for TableWithJoins
source§impl<'de> Deserialize<'de> for TableWithJoins
 
impl<'de> Deserialize<'de> for TableWithJoins
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for TableWithJoins
 
impl Display for TableWithJoins
source§impl Hash for TableWithJoins
 
impl Hash for TableWithJoins
source§impl Ord for TableWithJoins
 
impl Ord for TableWithJoins
source§fn cmp(&self, other: &TableWithJoins) -> Ordering
 
fn cmp(&self, other: &TableWithJoins) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TableWithJoins
 
impl PartialEq for TableWithJoins
source§fn eq(&self, other: &TableWithJoins) -> bool
 
fn eq(&self, other: &TableWithJoins) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for TableWithJoins
 
impl PartialOrd for TableWithJoins
source§fn partial_cmp(&self, other: &TableWithJoins) -> Option<Ordering>
 
fn partial_cmp(&self, other: &TableWithJoins) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moresource§impl Serialize for TableWithJoins
 
impl Serialize for TableWithJoins
source§impl Visit for TableWithJoins
 
impl Visit for TableWithJoins
source§impl VisitMut for TableWithJoins
 
impl VisitMut for TableWithJoins
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for TableWithJoins
impl StructuralEq for TableWithJoins
impl StructuralPartialEq for TableWithJoins
Auto Trait Implementations§
impl RefUnwindSafe for TableWithJoins
impl Send for TableWithJoins
impl Sync for TableWithJoins
impl Unpin for TableWithJoins
impl UnwindSafe for TableWithJoins
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