[][src]Struct postgres_parser::sys::RangeTableFuncCol

#[repr(C)]pub struct RangeTableFuncCol {
    pub type_: NodeTag,
    pub colname: *mut c_char,
    pub typeName: *mut TypeName,
    pub for_ordinality: bool,
    pub is_not_null: bool,
    pub colexpr: *mut Node,
    pub coldefexpr: *mut Node,
    pub location: c_int,
}

RangeTableFuncCol one column in a RangeTableFunc>columns

If for_ordinality is true (FOR ORDINALITY), then the column is an int4 column and the rest of the fields are ignored.

Fields

type_: NodeTagcolname: *mut c_chartypeName: *mut TypeName

name of generated column

for_ordinality: bool

type of generated column

is_not_null: bool

does it have FOR ORDINALITY?

colexpr: *mut Node

does it have NOT NULL?

coldefexpr: *mut Node

column filter expression

location: c_int

column default value expression

Trait Implementations

impl Debug for RangeTableFuncCol[src]

impl Default for RangeTableFuncCol[src]

impl Eq for RangeTableFuncCol[src]

impl Hash for RangeTableFuncCol[src]

impl PartialEq<RangeTableFuncCol> for RangeTableFuncCol[src]

impl StructuralEq for RangeTableFuncCol[src]

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