[][src]Struct postgres_parser::sys::AlterExtensionStmt

#[repr(C)]pub struct AlterExtensionStmt {
    pub type_: NodeTag,
    pub extname: *mut c_char,
    pub options: *mut List,
}

Only used for ALTER EXTENSION UPDATE; later might need an action field

Fields

type_: NodeTagextname: *mut c_charoptions: *mut List

Trait Implementations

impl Debug for AlterExtensionStmt[src]

impl Default for AlterExtensionStmt[src]

impl Eq for AlterExtensionStmt[src]

impl Hash for AlterExtensionStmt[src]

impl PartialEq<AlterExtensionStmt> for AlterExtensionStmt[src]

impl StructuralEq for AlterExtensionStmt[src]

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