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 · 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<'de> Deserialize<'de> for TableAliasWithoutColumns
impl<'de> Deserialize<'de> for TableAliasWithoutColumns
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 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 · 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§impl PartialOrd for TableAliasWithoutColumns
impl PartialOrd for TableAliasWithoutColumns
Source§impl Serialize for TableAliasWithoutColumns
impl Serialize for TableAliasWithoutColumns
Source§impl Visit for TableAliasWithoutColumns
impl Visit for TableAliasWithoutColumns
Source§impl VisitMut for TableAliasWithoutColumns
impl VisitMut for TableAliasWithoutColumns
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl 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