Struct pgx_pg_sys::ColumnDef[][src]

#[repr(C)]
pub struct ColumnDef {
Show fields pub type_: NodeTag, pub colname: *mut c_char, pub typeName: *mut TypeName, pub inhcount: c_int, pub is_local: bool, pub is_not_null: bool, pub is_from_type: bool, pub storage: c_char, pub raw_default: *mut Node, pub cooked_default: *mut Node, pub identity: c_char, pub identitySequence: *mut RangeVar, pub generated: c_char, pub collClause: *mut CollateClause, pub collOid: Oid, pub constraints: *mut List, pub fdwoptions: *mut List, pub location: c_int,
}

Fields

type_: NodeTagcolname: *mut c_chartypeName: *mut TypeNameinhcount: c_intis_local: boolis_not_null: boolis_from_type: boolstorage: c_charraw_default: *mut Nodecooked_default: *mut Nodeidentity: c_charidentitySequence: *mut RangeVargenerated: c_charcollClause: *mut CollateClausecollOid: Oidconstraints: *mut Listfdwoptions: *mut Listlocation: c_int

Trait Implementations

impl Clone for ColumnDef[src]

impl Copy for ColumnDef[src]

impl Debug for ColumnDef[src]

impl Default for ColumnDef[src]

impl Display for ColumnDef[src]

impl PgNode for ColumnDef[src]

type NodeType = ColumnDef

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.