pub enum CreateIndexParams {
Column,
CreateIndex,
On,
Unique,
Where,
Using,
Concurrently,
Only,
Include,
Fulltext,
Lock,
Spatial,
}Expand description
All available params to be used in CreateIndex::raw_before and CreateIndex::raw_after methods on CreateIndex builder
Variants§
Trait Implementations§
Source§impl Clone for CreateIndexParams
impl Clone for CreateIndexParams
Source§fn clone(&self) -> CreateIndexParams
fn clone(&self) -> CreateIndexParams
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 PartialEq for CreateIndexParams
impl PartialEq for CreateIndexParams
impl StructuralPartialEq for CreateIndexParams
Auto Trait Implementations§
impl Freeze for CreateIndexParams
impl RefUnwindSafe for CreateIndexParams
impl Send for CreateIndexParams
impl Sync for CreateIndexParams
impl Unpin for CreateIndexParams
impl UnwindSafe for CreateIndexParams
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