pub enum CreateIndexParams {
Column,
CreateIndex,
On,
Unique,
Where,
Using,
Concurrently,
Only,
Include,
Fulltext,
Lock,
Spatial,
}Available on crate features
postgresql or sqlite or mysql only.Expand description
All available params to be used in CreateIndex::raw_before and CreateIndex::raw_after methods on CreateIndex builder
Variants§
Column
CreateIndex
On
Unique
Where
Available on crate features
postgresql or sqlite only.Using
Available on crate features
postgresql or mysql only.Concurrently
Available on crate feature
postgresql only.Only
Available on crate feature
postgresql only.Include
Available on crate feature
postgresql only.Fulltext
Available on crate feature
mysql only.Lock
Available on crate feature
mysql only.Spatial
Available on crate feature
mysql only.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 UnsafeUnpin 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