[][src]Struct postgres_parser::nodes::TableFunc

pub struct TableFunc {
    pub ns_uris: Option<Vec<Node>>,
    pub ns_names: Option<Vec<Node>>,
    pub docexpr: Option<Box<Node>>,
    pub rowexpr: Option<Box<Node>>,
    pub colnames: Option<Vec<Node>>,
    pub coltypes: Option<Vec<Node>>,
    pub coltypmods: Option<Vec<Node>>,
    pub colcollations: Option<Vec<Node>>,
    pub colexprs: Option<Vec<Node>>,
    pub coldefexprs: Option<Vec<Node>>,
    pub ordinalitycol: i32,
    pub location: i32,
}

TableFunc node for a table function, such as XMLTABLE.

Entries in the ns_names list are either string Value nodes containing literal namespace names, or NULL pointers to represent DEFAULT.

Fields

ns_uris: Option<Vec<Node>>ns_names: Option<Vec<Node>>docexpr: Option<Box<Node>>rowexpr: Option<Box<Node>>colnames: Option<Vec<Node>>coltypes: Option<Vec<Node>>coltypmods: Option<Vec<Node>>colcollations: Option<Vec<Node>>colexprs: Option<Vec<Node>>coldefexprs: Option<Vec<Node>>ordinalitycol: i32location: i32

Trait Implementations

impl Debug for TableFunc[src]

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

impl Eq for TableFunc[src]

impl PartialEq<TableFunc> for TableFunc[src]

impl Serialize for TableFunc[src]

impl StructuralEq for TableFunc[src]

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