[][src]Struct postgres_parser::nodes::RangeTableFuncCol

pub struct RangeTableFuncCol {
    pub colname: Option<String>,
    pub typeName: Option<Box<TypeName>>,
    pub for_ordinality: bool,
    pub is_not_null: bool,
    pub colexpr: Option<Box<Node>>,
    pub coldefexpr: Option<Box<Node>>,
    pub location: i32,
}

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

colname: Option<String>typeName: Option<Box<TypeName>>for_ordinality: boolis_not_null: boolcolexpr: Option<Box<Node>>coldefexpr: Option<Box<Node>>location: i32

Trait Implementations

impl Debug for RangeTableFuncCol[src]

impl<'de> Deserialize<'de> for RangeTableFuncCol[src]

impl Eq for RangeTableFuncCol[src]

impl PartialEq<RangeTableFuncCol> for RangeTableFuncCol[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.