Struct pg_query::ast::InsertStmt[][src]

pub struct InsertStmt {
    pub relation: Option<Box<RangeVar>>,
    pub cols: Option<Vec<Node>>,
    pub select_stmt: Option<Box<Node>>,
    pub on_conflict_clause: Option<Box<OnConflictClause>>,
    pub returning_list: Option<Vec<Node>>,
    pub with_clause: Option<Box<WithClause>>,
    pub override_: Box<OverridingKind>,
}

Fields

relation: Option<Box<RangeVar>>cols: Option<Vec<Node>>select_stmt: Option<Box<Node>>on_conflict_clause: Option<Box<OnConflictClause>>returning_list: Option<Vec<Node>>with_clause: Option<Box<WithClause>>override_: Box<OverridingKind>

Trait Implementations

impl Debug for InsertStmt[src]

impl<'de> Deserialize<'de> for InsertStmt[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.