Struct pgx_pg_sys::AppendState[][src]

#[repr(C)]
pub struct AppendState { pub ps: PlanState, pub appendplans: *mut *mut PlanState, pub as_nplans: c_int, pub as_whichplan: c_int, pub as_first_partial_plan: c_int, pub as_pstate: *mut ParallelAppendState, pub pstate_len: Size, pub as_prune_state: *mut PartitionPruneState, pub as_valid_subplans: *mut Bitmapset, pub choose_next_subplan: Option<unsafe extern "C" fn(arg1: *mut AppendState) -> bool>, }

Fields

ps: PlanStateappendplans: *mut *mut PlanStateas_nplans: c_intas_whichplan: c_intas_first_partial_plan: c_intas_pstate: *mut ParallelAppendStatepstate_len: Sizeas_prune_state: *mut PartitionPruneStateas_valid_subplans: *mut Bitmapsetchoose_next_subplan: Option<unsafe extern "C" fn(arg1: *mut AppendState) -> bool>

Trait Implementations

impl Clone for AppendState[src]

impl Copy for AppendState[src]

impl Debug for AppendState[src]

impl Default for AppendState[src]

impl Display for AppendState[src]

impl PgNode for AppendState[src]

type NodeType = AppendState

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.