pub struct CreateIndexStmt {
pub index_name: String,
pub table_name: String,
pub columns: Vec<String>,
pub unique: bool,
pub if_not_exists: bool,
}Fields§
§index_name: String§table_name: String§columns: Vec<String>§unique: bool§if_not_exists: boolTrait 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 moreAuto Trait Implementations§
impl Freeze for CreateIndexStmt
impl RefUnwindSafe for CreateIndexStmt
impl Send for CreateIndexStmt
impl Sync for CreateIndexStmt
impl Unpin for CreateIndexStmt
impl UnsafeUnpin 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