[][src]Struct postgres_parser::sys::CreateOpClassItem

#[repr(C)]pub struct CreateOpClassItem {
    pub type_: NodeTag,
    pub itemtype: c_int,
    pub name: *mut ObjectWithArgs,
    pub number: c_int,
    pub order_family: *mut List,
    pub class_args: *mut List,
    pub storedtype: *mut TypeName,
}

Fields

type_: NodeTagitemtype: c_intname: *mut ObjectWithArgs

see codes above

number: c_int

operator or function name and args

order_family: *mut List

strategy num or support proc num

class_args: *mut List

only used for ordering operators

storedtype: *mut TypeName

amproclefttype/amprocrighttype or amoplefttype/amoprighttype */

Trait Implementations

impl Debug for CreateOpClassItem[src]

impl Default for CreateOpClassItem[src]

impl Eq for CreateOpClassItem[src]

impl Hash for CreateOpClassItem[src]

impl PartialEq<CreateOpClassItem> for CreateOpClassItem[src]

impl StructuralEq for CreateOpClassItem[src]

impl StructuralPartialEq for CreateOpClassItem[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.