[][src]Struct postgres_parser::sys::OnConflictClause

#[repr(C)]pub struct OnConflictClause {
    pub type_: NodeTag,
    pub action: OnConflictAction,
    pub infer: *mut InferClause,
    pub targetList: *mut List,
    pub whereClause: *mut Node,
    pub location: c_int,
}

OnConflictClause representation of ON CONFLICT clause

Note: OnConflictClause does not propagate into the Query representation.

Fields

type_: NodeTagaction: OnConflictActioninfer: *mut InferClause

DO NOTHING or UPDATE?

targetList: *mut List

Optional index inference clause

whereClause: *mut Node

the target list (of ResTarget)

location: c_int

qualifications

Trait Implementations

impl Debug for OnConflictClause[src]

impl Default for OnConflictClause[src]

impl Eq for OnConflictClause[src]

impl Hash for OnConflictClause[src]

impl PartialEq<OnConflictClause> for OnConflictClause[src]

impl StructuralEq for OnConflictClause[src]

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