pub struct InsertAliases {
pub row_alias: ObjectName,
pub col_aliases: Option<Vec<Ident>>,
}Expand description
Optional aliases for INSERT targets: row alias and optional column aliases.
Fields§
§row_alias: ObjectNameRow alias (table-style alias) for the inserted values.
col_aliases: Option<Vec<Ident>>Optional list of column aliases for the inserted values.
Trait Implementations§
Source§impl Clone for InsertAliases
impl Clone for InsertAliases
Source§fn clone(&self) -> InsertAliases
fn clone(&self) -> InsertAliases
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 InsertAliases
impl Debug for InsertAliases
Source§impl Hash for InsertAliases
impl Hash for InsertAliases
Source§impl Ord for InsertAliases
impl Ord for InsertAliases
Source§fn cmp(&self, other: &InsertAliases) -> Ordering
fn cmp(&self, other: &InsertAliases) -> 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 InsertAliases
impl PartialEq for InsertAliases
Source§impl PartialOrd for InsertAliases
impl PartialOrd for InsertAliases
Source§impl Visit for InsertAliases
impl Visit for InsertAliases
Source§impl VisitMut for InsertAliases
impl VisitMut for InsertAliases
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 InsertAliases
impl StructuralPartialEq for InsertAliases
Auto Trait Implementations§
impl Freeze for InsertAliases
impl RefUnwindSafe for InsertAliases
impl Send for InsertAliases
impl Sync for InsertAliases
impl Unpin for InsertAliases
impl UnsafeUnpin for InsertAliases
impl UnwindSafe for InsertAliases
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