[][src]Struct postgres_parser::sys::InferenceElem

#[repr(C)]pub struct InferenceElem {
    pub xpr: Expr,
    pub expr: *mut Node,
    pub infercollid: Oid,
    pub inferopclass: Oid,
}

InferenceElem an element of a unique index inference specification

This mostly matches the structure of IndexElems, but having a dedicated primnode allows for a clean separation between the use of index parameters by utility commands, and this node.

Fields

xpr: Exprexpr: *mut Nodeinfercollid: Oid

expression to infer from, or NULL

inferopclass: Oid

OID of collation, or InvalidOid

Trait Implementations

impl Debug for InferenceElem[src]

impl Default for InferenceElem[src]

impl Eq for InferenceElem[src]

impl Hash for InferenceElem[src]

impl PartialEq<InferenceElem> for InferenceElem[src]

impl StructuralEq for InferenceElem[src]

impl StructuralPartialEq for InferenceElem[src]

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, 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.