[][src]Struct postgres_parser::nodes::CreateTrigStmt

pub struct CreateTrigStmt {
    pub trigname: Option<String>,
    pub relation: Option<Box<RangeVar>>,
    pub funcname: Option<Vec<Node>>,
    pub args: Option<Vec<Node>>,
    pub row: bool,
    pub timing: i16,
    pub events: i16,
    pub columns: Option<Vec<Node>>,
    pub whenClause: Option<Box<Node>>,
    pub isconstraint: bool,
    pub transitionRels: Option<Vec<Node>>,
    pub deferrable: bool,
    pub initdeferred: bool,
    pub constrrel: Option<Box<RangeVar>>,
}

Create TRIGGER Statement

Fields

trigname: Option<String>relation: Option<Box<RangeVar>>funcname: Option<Vec<Node>>args: Option<Vec<Node>>row: booltiming: i16events: i16columns: Option<Vec<Node>>whenClause: Option<Box<Node>>isconstraint: booltransitionRels: Option<Vec<Node>>deferrable: boolinitdeferred: boolconstrrel: Option<Box<RangeVar>>

Trait Implementations

impl Debug for CreateTrigStmt[src]

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

impl Eq for CreateTrigStmt[src]

impl PartialEq<CreateTrigStmt> for CreateTrigStmt[src]

impl Serialize for CreateTrigStmt[src]

impl StructuralEq for CreateTrigStmt[src]

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