Enum sqlpop::ast::TriggerCmd [] [src]

pub enum TriggerCmd {
    Update {
        or_conflict: Option<ResolveType>,
        tbl_name: Name,
        sets: Vec<Set>,
        where_clause: Option<Expr>,
    },
    Insert {
        or_conflict: Option<ResolveType>,
        tbl_name: Name,
        col_names: Option<Vec<Name>>,
        select: Select,
    },
    Delete {
        tbl_name: Name,
        where_clause: Option<Expr>,
    },
    Select(Select),
}

Variants

Fields of Update

Fields of Insert

Fields of Delete

Trait Implementations

impl Clone for TriggerCmd
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TriggerCmd
[src]

Formats the value using the given formatter.

impl PartialEq for TriggerCmd
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TriggerCmd
[src]