pub struct CreateFtsIndex {
pub index_name: String,
pub table_name: String,
pub column_name: String,
pub tokenizer: Option<String>,
pub if_not_exists: bool,
}Expand description
CREATE FTS INDEX statement.
Fields§
§index_name: String§table_name: String§column_name: String§tokenizer: Option<String>Tokenizer name from WITH TOKENIZER('...') (P109.1). None when the
clause is omitted — the binder resolves the en_stem default.
if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateFtsIndex
impl Clone for CreateFtsIndex
Source§fn clone(&self) -> CreateFtsIndex
fn clone(&self) -> CreateFtsIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateFtsIndex
impl Debug for CreateFtsIndex
Source§impl PartialEq for CreateFtsIndex
impl PartialEq for CreateFtsIndex
impl StructuralPartialEq for CreateFtsIndex
Auto Trait Implementations§
impl Freeze for CreateFtsIndex
impl RefUnwindSafe for CreateFtsIndex
impl Send for CreateFtsIndex
impl Sync for CreateFtsIndex
impl Unpin for CreateFtsIndex
impl UnsafeUnpin for CreateFtsIndex
impl UnwindSafe for CreateFtsIndex
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