[][src]Struct postgres_parser::sys::CreateOpClassStmt

#[repr(C)]pub struct CreateOpClassStmt {
    pub type_: NodeTag,
    pub opclassname: *mut List,
    pub opfamilyname: *mut List,
    pub amname: *mut c_char,
    pub datatype: *mut TypeName,
    pub items: *mut List,
    pub isDefault: bool,
}

Create Operator Class Statement

Fields

type_: NodeTagopclassname: *mut Listopfamilyname: *mut List

qualified name (list of Value strings)

amname: *mut c_char

qualified name (ditto); NIL if omitted

datatype: *mut TypeName

name of index AM opclass is for

items: *mut List

datatype of indexed column

isDefault: bool

List of CreateOpClassItem nodes

Trait Implementations

impl Debug for CreateOpClassStmt[src]

impl Default for CreateOpClassStmt[src]

impl Eq for CreateOpClassStmt[src]

impl Hash for CreateOpClassStmt[src]

impl PartialEq<CreateOpClassStmt> for CreateOpClassStmt[src]

impl StructuralEq for CreateOpClassStmt[src]

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