[][src]Struct postgres_parser::nodes::AlterDomainStmt

pub struct AlterDomainStmt {
    pub subtype: char,
    pub typeName: Option<Vec<Node>>,
    pub name: Option<String>,
    pub def: Option<Box<Node>>,
    pub behavior: DropBehavior,
    pub missing_ok: bool,
}

Alter Domain

The fields are used in different ways by the different variants of this command.

Fields

subtype: chartypeName: Option<Vec<Node>>name: Option<String>def: Option<Box<Node>>behavior: DropBehaviormissing_ok: bool

Trait Implementations

impl Debug for AlterDomainStmt[src]

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

impl Eq for AlterDomainStmt[src]

impl PartialEq<AlterDomainStmt> for AlterDomainStmt[src]

impl Serialize for AlterDomainStmt[src]

impl StructuralEq for AlterDomainStmt[src]

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