[][src]Struct pgx_pg_sys::IndexOptInfo

#[repr(C)]pub struct IndexOptInfo {
    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 amcostestimate: Option<unsafe extern "C" fn()>,
}

Fields

type_: NodeTagindexoid: Oidreltablespace: Oidrel: *mut RelOptInfopages: BlockNumbertuples: f64tree_height: c_intncolumns: c_intnkeycolumns: c_intindexkeys: *mut c_intindexcollations: *mut Oidopfamily: *mut Oidopcintype: *mut Oidsortopfamily: *mut Oidreverse_sort: *mut boolnulls_first: *mut boolopclassoptions: *mut *mut byteacanreturn: *mut boolrelam: Oidindexprs: *mut Listindpred: *mut Listindextlist: *mut Listindrestrictinfo: *mut ListpredOK: boolunique: boolimmediate: boolhypothetical: boolamcanorderbyop: boolamoptionalkey: boolamsearcharray: boolamsearchnulls: boolamhasgettuple: boolamhasgetbitmap: boolamcanparallel: boolamcostestimate: Option<unsafe extern "C" fn()>

Trait Implementations

impl Clone for IndexOptInfo[src]

impl Copy for IndexOptInfo[src]

impl Debug for IndexOptInfo[src]

impl Default for IndexOptInfo[src]

impl Display for IndexOptInfo[src]

impl PgNode for IndexOptInfo[src]

type NodeType = IndexOptInfo

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.