[][src]Struct pgx_pg_sys::SpecialJoinInfo

#[repr(C)]pub struct SpecialJoinInfo {
    pub type_: NodeTag,
    pub min_lefthand: Relids,
    pub min_righthand: Relids,
    pub syn_lefthand: Relids,
    pub syn_righthand: Relids,
    pub jointype: JoinType,
    pub lhs_strict: bool,
    pub delay_upper_joins: bool,
    pub semi_can_btree: bool,
    pub semi_can_hash: bool,
    pub semi_operators: *mut List,
    pub semi_rhs_exprs: *mut List,
}

Fields

type_: NodeTagmin_lefthand: Relidsmin_righthand: Relidssyn_lefthand: Relidssyn_righthand: Relidsjointype: JoinTypelhs_strict: booldelay_upper_joins: boolsemi_can_btree: boolsemi_can_hash: boolsemi_operators: *mut Listsemi_rhs_exprs: *mut List

Trait Implementations

impl Clone for SpecialJoinInfo[src]

impl Copy for SpecialJoinInfo[src]

impl Debug for SpecialJoinInfo[src]

impl Default for SpecialJoinInfo[src]

impl Display for SpecialJoinInfo[src]

impl PgNode for SpecialJoinInfo[src]

type NodeType = SpecialJoinInfo

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.