pub struct CreateIndexStmt {
pub if_not_exists: bool,
pub index_name: String,
pub table_name: String,
pub index_type: IndexType,
pub columns: Vec<IndexColumn>,
}Expand description
CREATE INDEX statement
Fields§
§if_not_exists: bool§index_name: String§table_name: String§index_type: IndexType§columns: Vec<IndexColumn>Trait Implementations§
Source§impl Clone for CreateIndexStmt
impl Clone for CreateIndexStmt
Source§fn clone(&self) -> CreateIndexStmt
fn clone(&self) -> CreateIndexStmt
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateIndexStmt
impl Debug for CreateIndexStmt
Source§impl PartialEq for CreateIndexStmt
impl PartialEq for CreateIndexStmt
impl StructuralPartialEq for CreateIndexStmt
Auto Trait Implementations§
impl Freeze for CreateIndexStmt
impl RefUnwindSafe for CreateIndexStmt
impl Send for CreateIndexStmt
impl Sync for CreateIndexStmt
impl Unpin for CreateIndexStmt
impl UnwindSafe for CreateIndexStmt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more