[][src]Struct pgx_pg_sys::AlterTableCmd

#[repr(C)]pub struct AlterTableCmd {
    pub type_: NodeTag,
    pub subtype: AlterTableType,
    pub name: *mut c_char,
    pub num: int16,
    pub newowner: *mut RoleSpec,
    pub def: *mut Node,
    pub behavior: DropBehavior,
    pub missing_ok: bool,
}

Fields

type_: NodeTagsubtype: AlterTableTypename: *mut c_charnum: int16newowner: *mut RoleSpecdef: *mut Nodebehavior: DropBehaviormissing_ok: bool

Trait Implementations

impl Clone for AlterTableCmd[src]

impl Copy for AlterTableCmd[src]

impl Debug for AlterTableCmd[src]

impl Default for AlterTableCmd[src]

impl Display for AlterTableCmd[src]

impl PgNode for AlterTableCmd[src]

type NodeType = AlterTableCmd

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.