Enum sqlpop::ast::CreateTableBody [] [src]

pub enum CreateTableBody {
    ColumnsAndConstraints {
        columns: Vec<ColumnDefinition>,
        constraints: Option<Vec<NamedTableConstraint>>,
        without: Option<Name>,
    },
    AsSelect(Select),
}

Variants

Fields of ColumnsAndConstraints

Trait Implementations

impl Clone for CreateTableBody
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreateTableBody
[src]

Formats the value using the given formatter.

impl PartialEq for CreateTableBody
[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 CreateTableBody
[src]