#[repr(C)]
pub struct IndexOptInfo {
Show 36 fields pub type_: NodeTag, pub indexoid: Oid, pub reltablespace: Oid, pub rel: *mut RelOptInfo, pub pages: BlockNumber, pub tuples: f64, pub tree_height: c_int, pub ncolumns: c_int, pub nkeycolumns: c_int, pub indexkeys: *mut c_int, pub indexcollations: *mut Oid, pub opfamily: *mut Oid, pub opcintype: *mut Oid, pub sortopfamily: *mut Oid, pub reverse_sort: *mut bool, pub nulls_first: *mut bool, pub opclassoptions: *mut *mut bytea, pub canreturn: *mut bool, pub relam: Oid, pub indexprs: *mut List, pub indpred: *mut List, pub indextlist: *mut List, pub indrestrictinfo: *mut List, pub predOK: bool, pub unique: bool, pub immediate: bool, pub hypothetical: bool, pub amcanorderbyop: bool, pub amoptionalkey: bool, pub amsearcharray: bool, pub amsearchnulls: bool, pub amhasgettuple: bool, pub amhasgetbitmap: bool, pub amcanparallel: bool, pub amcanmarkpos: bool, pub amcostestimate: Option<unsafe extern "C" fn()>,
}

Fields§

§type_: NodeTag§indexoid: Oid§reltablespace: Oid§rel: *mut RelOptInfo§pages: BlockNumber§tuples: f64§tree_height: c_int§ncolumns: c_int§nkeycolumns: c_int§indexkeys: *mut c_int§indexcollations: *mut Oid§opfamily: *mut Oid§opcintype: *mut Oid§sortopfamily: *mut Oid§reverse_sort: *mut bool§nulls_first: *mut bool§opclassoptions: *mut *mut bytea§canreturn: *mut bool§relam: Oid§indexprs: *mut List§indpred: *mut List§indextlist: *mut List§indrestrictinfo: *mut List§predOK: bool§unique: bool§immediate: bool§hypothetical: bool§amcanorderbyop: bool§amoptionalkey: bool§amsearcharray: bool§amsearchnulls: bool§amhasgettuple: bool§amhasgetbitmap: bool§amcanparallel: bool§amcanmarkpos: bool§amcostestimate: Option<unsafe extern "C" fn()>

Trait Implementations§

source§

impl Clone for IndexOptInfo

source§

fn clone(&self) -> IndexOptInfo

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 IndexOptInfo

source§

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

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

impl Default for IndexOptInfo

source§

fn default() -> Self

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

impl Display for IndexOptInfo

source§

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

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

impl PgNode for IndexOptInfo

source§

fn display_node(&self) -> String

Format this node Read more
source§

impl Copy for IndexOptInfo

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.