[][src]Struct pgx_pg_sys::RestrictInfo

#[repr(C)]pub struct RestrictInfo {
    pub type_: NodeTag,
    pub clause: *mut Expr,
    pub is_pushed_down: bool,
    pub outerjoin_delayed: bool,
    pub can_join: bool,
    pub pseudoconstant: bool,
    pub leakproof: bool,
    pub security_level: Index,
    pub clause_relids: Relids,
    pub required_relids: Relids,
    pub outer_relids: Relids,
    pub nullable_relids: Relids,
    pub left_relids: Relids,
    pub right_relids: Relids,
    pub orclause: *mut Expr,
    pub parent_ec: *mut EquivalenceClass,
    pub eval_cost: QualCost,
    pub norm_selec: Selectivity,
    pub outer_selec: Selectivity,
    pub mergeopfamilies: *mut List,
    pub left_ec: *mut EquivalenceClass,
    pub right_ec: *mut EquivalenceClass,
    pub left_em: *mut EquivalenceMember,
    pub right_em: *mut EquivalenceMember,
    pub scansel_cache: *mut List,
    pub outer_is_left: bool,
    pub hashjoinoperator: Oid,
    pub left_bucketsize: Selectivity,
    pub right_bucketsize: Selectivity,
    pub left_mcvfreq: Selectivity,
    pub right_mcvfreq: Selectivity,
}

Fields

type_: NodeTagclause: *mut Expris_pushed_down: boolouterjoin_delayed: boolcan_join: boolpseudoconstant: boolleakproof: boolsecurity_level: Indexclause_relids: Relidsrequired_relids: Relidsouter_relids: Relidsnullable_relids: Relidsleft_relids: Relidsright_relids: Relidsorclause: *mut Exprparent_ec: *mut EquivalenceClasseval_cost: QualCostnorm_selec: Selectivityouter_selec: Selectivitymergeopfamilies: *mut Listleft_ec: *mut EquivalenceClassright_ec: *mut EquivalenceClassleft_em: *mut EquivalenceMemberright_em: *mut EquivalenceMemberscansel_cache: *mut Listouter_is_left: boolhashjoinoperator: Oidleft_bucketsize: Selectivityright_bucketsize: Selectivityleft_mcvfreq: Selectivityright_mcvfreq: Selectivity

Trait Implementations

impl Clone for RestrictInfo[src]

impl Copy for RestrictInfo[src]

impl Debug for RestrictInfo[src]

impl Default for RestrictInfo[src]

impl Display for RestrictInfo[src]

impl PgNode for RestrictInfo[src]

type NodeType = RestrictInfo

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.