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 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 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 PartialEq for TableExpression
impl PartialEq for TableExpression
source§fn eq(&self, other: &TableExpression) -> bool
fn eq(&self, other: &TableExpression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)