[][src]Struct postgres_parser::nodes::DefElem

pub struct DefElem {
    pub defnamespace: Option<String>,
    pub defname: Option<String>,
    pub arg: Option<Box<Node>>,
    pub defaction: DefElemAction,
    pub location: i32,
}

Fields

defnamespace: Option<String>defname: Option<String>arg: Option<Box<Node>>defaction: DefElemActionlocation: i32

Trait Implementations

impl Debug for DefElem[src]

impl<'de> Deserialize<'de> for DefElem[src]

impl Eq for DefElem[src]

impl PartialEq<DefElem> for DefElem[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.