[][src]Struct pgx_pg_sys::AppendRelInfo

#[repr(C)]pub struct AppendRelInfo {
    pub type_: NodeTag,
    pub parent_relid: Index,
    pub child_relid: Index,
    pub parent_reltype: Oid,
    pub child_reltype: Oid,
    pub translated_vars: *mut List,
    pub num_child_cols: c_int,
    pub parent_colnos: *mut AttrNumber,
    pub parent_reloid: Oid,
}

Fields

type_: NodeTagparent_relid: Indexchild_relid: Indexparent_reltype: Oidchild_reltype: Oidtranslated_vars: *mut Listnum_child_cols: c_intparent_colnos: *mut AttrNumberparent_reloid: Oid

Trait Implementations

impl Clone for AppendRelInfo[src]

impl Copy for AppendRelInfo[src]

impl Debug for AppendRelInfo[src]

impl Default for AppendRelInfo[src]

impl Display for AppendRelInfo[src]

impl PgNode for AppendRelInfo[src]

type NodeType = AppendRelInfo

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.