Struct pgx_pg_sys::TypeName[][src]

#[repr(C)]
pub struct TypeName { pub type_: NodeTag, pub names: *mut List, pub typeOid: Oid, pub setof: bool, pub pct_type: bool, pub typmods: *mut List, pub typemod: int32, pub arrayBounds: *mut List, pub location: c_int, }

Supporting data structures for Parse Trees

Most of these node types appear in raw parsetrees output by the grammar, and get transformed to something else by the analyzer. A few of them are used as-is in transformed querytrees.

Fields

type_: NodeTagnames: *mut ListtypeOid: Oidsetof: boolpct_type: booltypmods: *mut Listtypemod: int32arrayBounds: *mut Listlocation: c_int

Trait Implementations

impl Clone for TypeName[src]

impl Copy for TypeName[src]

impl Debug for TypeName[src]

impl Default for TypeName[src]

impl Display for TypeName[src]

impl PgNode for TypeName[src]

type NodeType = TypeName

Auto Trait Implementations

impl RefUnwindSafe for TypeName

impl !Send for TypeName

impl !Sync for TypeName

impl Unpin for TypeName

impl UnwindSafe for TypeName

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.