pub struct TableAliasWithoutColumns {
pub explicit: bool,
pub alias: Ident,
}Expand description
Optional alias for an INSERT table; i.e. the table to be inserted into
Fields§
§explicit: booltrue if the aliases was explicitly introduced with the “AS” keyword
alias: Identthe alias name itself
Trait Implementations§
Source§impl Clone for TableAliasWithoutColumns
impl Clone for TableAliasWithoutColumns
Source§fn clone(&self) -> TableAliasWithoutColumns
fn clone(&self) -> TableAliasWithoutColumns
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TableAliasWithoutColumns
impl Debug for TableAliasWithoutColumns
Source§impl Hash for TableAliasWithoutColumns
impl Hash for TableAliasWithoutColumns
Source§impl Ord for TableAliasWithoutColumns
impl Ord for TableAliasWithoutColumns
Source§fn cmp(&self, other: &TableAliasWithoutColumns) -> Ordering
fn cmp(&self, other: &TableAliasWithoutColumns) -> Ordering
1.21.0 (const: unstable) · 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 TableAliasWithoutColumns
impl PartialEq for TableAliasWithoutColumns
Source§fn eq(&self, other: &TableAliasWithoutColumns) -> bool
fn eq(&self, other: &TableAliasWithoutColumns) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TableAliasWithoutColumns
impl PartialOrd for TableAliasWithoutColumns
impl Eq for TableAliasWithoutColumns
impl StructuralPartialEq for TableAliasWithoutColumns
Auto Trait Implementations§
impl Freeze for TableAliasWithoutColumns
impl RefUnwindSafe for TableAliasWithoutColumns
impl Send for TableAliasWithoutColumns
impl Sync for TableAliasWithoutColumns
impl Unpin for TableAliasWithoutColumns
impl UnsafeUnpin for TableAliasWithoutColumns
impl UnwindSafe for TableAliasWithoutColumns
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