[][src]Struct postgres_parser::sys::UpdateStmt

#[repr(C)]pub struct UpdateStmt {
    pub type_: NodeTag,
    pub relation: *mut RangeVar,
    pub targetList: *mut List,
    pub whereClause: *mut Node,
    pub fromClause: *mut List,
    pub returningList: *mut List,
    pub withClause: *mut WithClause,
}

Update Statement

Fields

type_: NodeTagrelation: *mut RangeVartargetList: *mut List

relation to update

whereClause: *mut Node

the target list (of ResTarget)

fromClause: *mut List

qualifications

returningList: *mut List

optional from clause for more tables

withClause: *mut WithClause

list of expressions to return

Trait Implementations

impl Debug for UpdateStmt[src]

impl Default for UpdateStmt[src]

impl Eq for UpdateStmt[src]

impl Hash for UpdateStmt[src]

impl PartialEq<UpdateStmt> for UpdateStmt[src]

impl StructuralEq for UpdateStmt[src]

impl StructuralPartialEq for UpdateStmt[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> 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.