[][src]Struct pgx_pg_sys::ModifyTableState

#[repr(C)]pub struct ModifyTableState {
    pub ps: PlanState,
    pub operation: CmdType,
    pub canSetTag: bool,
    pub mt_done: bool,
    pub mt_plans: *mut *mut PlanState,
    pub mt_nplans: c_int,
    pub mt_whichplan: c_int,
    pub mt_scans: *mut *mut TupleTableSlot,
    pub resultRelInfo: *mut ResultRelInfo,
    pub rootResultRelInfo: *mut ResultRelInfo,
    pub mt_arowmarks: *mut *mut List,
    pub mt_epqstate: EPQState,
    pub fireBSTriggers: bool,
    pub mt_root_tuple_slot: *mut TupleTableSlot,
    pub mt_partition_tuple_routing: *mut PartitionTupleRouting,
    pub mt_transition_capture: *mut TransitionCaptureState,
    pub mt_oc_transition_capture: *mut TransitionCaptureState,
    pub mt_per_subplan_tupconv_maps: *mut *mut TupleConversionMap,
}

Fields

ps: PlanStateoperation: CmdTypecanSetTag: boolmt_done: boolmt_plans: *mut *mut PlanStatemt_nplans: c_intmt_whichplan: c_intmt_scans: *mut *mut TupleTableSlotresultRelInfo: *mut ResultRelInforootResultRelInfo: *mut ResultRelInfomt_arowmarks: *mut *mut Listmt_epqstate: EPQStatefireBSTriggers: boolmt_root_tuple_slot: *mut TupleTableSlotmt_partition_tuple_routing: *mut PartitionTupleRoutingmt_transition_capture: *mut TransitionCaptureStatemt_oc_transition_capture: *mut TransitionCaptureStatemt_per_subplan_tupconv_maps: *mut *mut TupleConversionMap

Trait Implementations

impl Clone for ModifyTableState[src]

impl Copy for ModifyTableState[src]

impl Debug for ModifyTableState[src]

impl Default for ModifyTableState[src]

impl Display for ModifyTableState[src]

impl PgNode for ModifyTableState[src]

type NodeType = ModifyTableState

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.