#[repr(C)]
pub struct RestrictInfo {
Show 33 fields 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 has_volatile: VolatileFunctionStatus, 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, pub hasheqoperator: Oid,
}

Fields§

§type_: NodeTag§clause: *mut Expr§is_pushed_down: bool§outerjoin_delayed: bool§can_join: bool§pseudoconstant: bool§leakproof: bool§has_volatile: VolatileFunctionStatus§security_level: Index§clause_relids: Relids§required_relids: Relids§outer_relids: Relids§nullable_relids: Relids§left_relids: Relids§right_relids: Relids§orclause: *mut Expr§parent_ec: *mut EquivalenceClass§eval_cost: QualCost§norm_selec: Selectivity§outer_selec: Selectivity§mergeopfamilies: *mut List§left_ec: *mut EquivalenceClass§right_ec: *mut EquivalenceClass§left_em: *mut EquivalenceMember§right_em: *mut EquivalenceMember§scansel_cache: *mut List§outer_is_left: bool§hashjoinoperator: Oid§left_bucketsize: Selectivity§right_bucketsize: Selectivity§left_mcvfreq: Selectivity§right_mcvfreq: Selectivity§hasheqoperator: Oid

Trait Implementations§

source§

impl Clone for RestrictInfo

source§

fn clone(&self) -> RestrictInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RestrictInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for RestrictInfo

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for RestrictInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PgNode for RestrictInfo

source§

fn display_node(&self) -> String

Format this node Read more
source§

impl Copy for RestrictInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.