pub struct SelectInto {
pub this: Expression,
pub temporary: bool,
pub unlogged: bool,
pub bulk_collect: bool,
pub expressions: Vec<Expression>,
}Expand description
INTO clause for SELECT INTO statements
Fields§
§this: ExpressionTarget table or variable (used when single target)
temporary: boolWhether TEMPORARY keyword was used
unlogged: boolWhether UNLOGGED keyword was used (PostgreSQL)
bulk_collect: boolWhether BULK COLLECT INTO was used (Oracle PL/SQL)
expressions: Vec<Expression>Multiple target variables (Oracle PL/SQL: BULK COLLECT INTO v1, v2)
Trait Implementations§
Source§impl Clone for SelectInto
impl Clone for SelectInto
Source§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 moreSource§impl Debug for SelectInto
impl Debug for SelectInto
Source§impl<'de> Deserialize<'de> for SelectInto
impl<'de> Deserialize<'de> for SelectInto
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 SelectInto
impl PartialEq for SelectInto
Source§impl Serialize for SelectInto
impl Serialize 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