[][src]Struct postgres_parser::sys::AlterTSConfigurationStmt

#[repr(C)]pub struct AlterTSConfigurationStmt {
    pub type_: NodeTag,
    pub kind: AlterTSConfigType,
    pub cfgname: *mut List,
    pub tokentype: *mut List,
    pub dicts: *mut List,
    pub override_: bool,
    pub replace: bool,
    pub missing_ok: bool,
}

Fields

type_: NodeTagkind: AlterTSConfigTypecfgname: *mut List

ALTER_TSCONFIG_ADD_MAPPING, etc

tokentype: *mut List

dicts will be nonNIL if ADD/ALTER MAPPING was specified. If dicts is NIL, but tokentype isn't, DROP MAPPING was specified.

dicts: *mut List

list of Value strings

override_: bool

list of list of Value strings

replace: bool

if true remove old variant

missing_ok: bool

if true replace dictionary by another

Trait Implementations

impl Debug for AlterTSConfigurationStmt[src]

impl Default for AlterTSConfigurationStmt[src]

impl Eq for AlterTSConfigurationStmt[src]

impl Hash for AlterTSConfigurationStmt[src]

impl PartialEq<AlterTSConfigurationStmt> for AlterTSConfigurationStmt[src]

impl StructuralEq for AlterTSConfigurationStmt[src]

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