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<TableWithJoins> for TableWithJoins
impl PartialEq<TableWithJoins> 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<TableWithJoins> for TableWithJoins
impl PartialOrd<TableWithJoins> 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 more