Struct pgx_pg_sys::ModifyTable[][src]

#[repr(C)]
pub struct ModifyTable {
Show fields pub plan: Plan, pub operation: CmdType, pub canSetTag: bool, pub nominalRelation: Index, pub rootRelation: Index, pub partColsUpdated: bool, pub resultRelations: *mut List, pub resultRelIndex: c_int, pub rootResultRelIndex: c_int, pub plans: *mut List, pub withCheckOptionLists: *mut List, pub returningLists: *mut List, pub fdwPrivLists: *mut List, pub fdwDirectModifyPlans: *mut Bitmapset, pub rowMarks: *mut List, pub epqParam: c_int, pub onConflictAction: OnConflictAction, pub arbiterIndexes: *mut List, pub onConflictSet: *mut List, pub onConflictWhere: *mut Node, pub exclRelRTI: Index, pub exclRelTlist: *mut List,
}

Fields

plan: Planoperation: CmdTypecanSetTag: boolnominalRelation: IndexrootRelation: IndexpartColsUpdated: boolresultRelations: *mut ListresultRelIndex: c_introotResultRelIndex: c_intplans: *mut ListwithCheckOptionLists: *mut ListreturningLists: *mut ListfdwPrivLists: *mut ListfdwDirectModifyPlans: *mut BitmapsetrowMarks: *mut ListepqParam: c_intonConflictAction: OnConflictActionarbiterIndexes: *mut ListonConflictSet: *mut ListonConflictWhere: *mut NodeexclRelRTI: IndexexclRelTlist: *mut List

Trait Implementations

impl Clone for ModifyTable[src]

impl Copy for ModifyTable[src]

impl Debug for ModifyTable[src]

impl Default for ModifyTable[src]

impl Display for ModifyTable[src]

impl PgNode for ModifyTable[src]

type NodeType = ModifyTable

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.