pub enum TableExpression {
Named {
table: Identifier,
schema: Option<Identifier>,
},
}
Expand description
Representations of base queries
Variants§
Named
The row set of a given table; possibly providing an alias
Fields
§
table: Identifier
The qualified table Identifier
§
schema: Option<Identifier>
Namespace / schema for the table
Trait Implementations§
Source§impl Clone for TableExpression
impl Clone for TableExpression
Source§fn clone(&self) -> TableExpression
fn clone(&self) -> TableExpression
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 moreSource§impl Debug for TableExpression
impl Debug for TableExpression
Source§impl<'de> Deserialize<'de> for TableExpression
impl<'de> Deserialize<'de> for TableExpression
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 From<TableExpression> for TableFactor
impl From<TableExpression> for TableFactor
Source§fn from(table: TableExpression) -> Self
fn from(table: TableExpression) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TableExpression
impl PartialEq for TableExpression
Source§impl Serialize for TableExpression
impl Serialize for TableExpression
impl Eq for TableExpression
impl StructuralPartialEq for TableExpression
Auto Trait Implementations§
impl Freeze for TableExpression
impl RefUnwindSafe for TableExpression
impl Send for TableExpression
impl Sync for TableExpression
impl Unpin for TableExpression
impl UnwindSafe for TableExpression
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