Struct SelectInto
pub struct SelectInto {
pub target_table: DynIden,
pub target_table_modifier: Option<SelectIntoTableModifier>,
}Expand description
The INTO clause in SELECT statement
Fields§
§target_table: DynIden§target_table_modifier: Option<SelectIntoTableModifier>Implementations§
§impl SelectInto
impl SelectInto
pub fn modifier(self, modifier: SelectIntoTableModifier) -> Self
pub fn modifier(self, modifier: SelectIntoTableModifier) -> Self
Set a modifier for the target table like Temporary or unlogged
Trait Implementations§
§impl Clone for SelectInto
impl Clone for SelectInto
§fn clone(&self) -> SelectInto
fn clone(&self) -> SelectInto
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 more§impl Debug for SelectInto
impl Debug for SelectInto
§impl PartialEq for SelectInto
impl PartialEq for SelectInto
impl StructuralPartialEq for SelectInto
Auto Trait Implementations§
impl Freeze for SelectInto
impl RefUnwindSafe for SelectInto
impl Send for SelectInto
impl Sync for SelectInto
impl Unpin for SelectInto
impl UnwindSafe for SelectInto
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