[][src]Struct pgx_pg_sys::AlterDomainStmt

#[repr(C)]pub struct AlterDomainStmt {
    pub type_: NodeTag,
    pub subtype: c_char,
    pub typeName: *mut List,
    pub name: *mut c_char,
    pub def: *mut Node,
    pub behavior: DropBehavior,
    pub missing_ok: bool,
}

Fields

type_: NodeTagsubtype: c_chartypeName: *mut Listname: *mut c_chardef: *mut Nodebehavior: DropBehaviormissing_ok: bool

Trait Implementations

impl Clone for AlterDomainStmt[src]

impl Copy for AlterDomainStmt[src]

impl Debug for AlterDomainStmt[src]

impl Default for AlterDomainStmt[src]

impl Display for AlterDomainStmt[src]

impl PgNode for AlterDomainStmt[src]

type NodeType = AlterDomainStmt

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> 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.