Struct sqlx_models_parser::ast::CreateIndex [−][src]
pub struct CreateIndex {
pub name: ObjectName,
pub table_name: ObjectName,
pub columns: Vec<OrderByExpr>,
pub unique: bool,
pub if_not_exists: bool,
}Expand description
CREATE INDEX
Fields
name: ObjectNameindex name
table_name: ObjectNamecolumns: Vec<OrderByExpr>unique: boolif_not_exists: boolTrait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CreateIndex
impl Send for CreateIndex
impl Sync for CreateIndex
impl Unpin for CreateIndex
impl UnwindSafe for CreateIndex
Blanket Implementations
Mutably borrows from an owned value. Read more