[][src]Struct postgres_parser::sys::AlterExtensionContentsStmt

#[repr(C)]pub struct AlterExtensionContentsStmt {
    pub type_: NodeTag,
    pub extname: *mut c_char,
    pub action: c_int,
    pub objtype: ObjectType,
    pub object: *mut Node,
}

Fields

type_: NodeTagextname: *mut c_charaction: c_int

Extension's name

objtype: ObjectType

+1 = add object, 1 = drop object

object: *mut Node

Object's type

Trait Implementations

impl Debug for AlterExtensionContentsStmt[src]

impl Default for AlterExtensionContentsStmt[src]

impl Eq for AlterExtensionContentsStmt[src]

impl Hash for AlterExtensionContentsStmt[src]

impl PartialEq<AlterExtensionContentsStmt> for AlterExtensionContentsStmt[src]

impl StructuralEq for AlterExtensionContentsStmt[src]

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