#[repr(C)]pub struct InsertStmt {
pub type_: NodeTag,
pub relation: *mut RangeVar,
pub cols: *mut List,
pub selectStmt: *mut Node,
pub onConflictClause: *mut OnConflictClause,
pub returningList: *mut List,
pub withClause: *mut WithClause,
pub override_: Type,
}
Expand description
Optimizable Statements
Fields§
§type_: NodeTag
§relation: *mut RangeVar
§cols: *mut List
§selectStmt: *mut Node
§onConflictClause: *mut OnConflictClause
§returningList: *mut List
§withClause: *mut WithClause
§override_: Type
Trait Implementations§
Source§impl Clone for InsertStmt
impl Clone for InsertStmt
Source§fn clone(&self) -> InsertStmt
fn clone(&self) -> InsertStmt
Returns a copy 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 InsertStmt
impl Debug for InsertStmt
Source§impl Default for InsertStmt
impl Default for InsertStmt
Source§impl Display for InsertStmt
impl Display for InsertStmt
Source§impl PgNode for InsertStmt
impl PgNode for InsertStmt
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for InsertStmt
Auto Trait Implementations§
impl Freeze for InsertStmt
impl RefUnwindSafe for InsertStmt
impl !Send for InsertStmt
impl !Sync for InsertStmt
impl Unpin for InsertStmt
impl UnwindSafe for InsertStmt
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