[][src]Struct postgres_parser::sys::DefElem

#[repr(C)]pub struct DefElem {
    pub type_: NodeTag,
    pub defnamespace: *mut c_char,
    pub defname: *mut c_char,
    pub arg: *mut Node,
    pub defaction: DefElemAction,
    pub location: c_int,
}

Fields

type_: NodeTagdefnamespace: *mut c_chardefname: *mut c_char

NULL if unqualified name

arg: *mut Nodedefaction: DefElemAction

a (Value *) or a (TypeName *)

location: c_int

unspecified action, or SET/ADD/DROP

Trait Implementations

impl Debug for DefElem[src]

impl Default for DefElem[src]

impl Eq for DefElem[src]

impl Hash for DefElem[src]

impl PartialEq<DefElem> for DefElem[src]

impl StructuralEq for DefElem[src]

impl StructuralPartialEq for DefElem[src]

Auto Trait Implementations

impl RefUnwindSafe for DefElem

impl !Send for DefElem

impl !Sync for DefElem

impl Unpin for DefElem

impl UnwindSafe for DefElem

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.