pub struct SqliteFtsConfig<'a> {
pub virtual_table: &'a str,
pub source_table: &'a str,
pub columns: &'a [&'a str],
pub insert_trigger: &'a str,
pub delete_trigger: &'a str,
pub update_trigger: &'a str,
}Expand description
SQLite FTS5 virtual table and synchronization-trigger names used by one migration.
Fields§
§virtual_table: &'a str§source_table: &'a str§columns: &'a [&'a str]§insert_trigger: &'a str§delete_trigger: &'a str§update_trigger: &'a strAuto Trait Implementations§
impl<'a> Freeze for SqliteFtsConfig<'a>
impl<'a> RefUnwindSafe for SqliteFtsConfig<'a>
impl<'a> Send for SqliteFtsConfig<'a>
impl<'a> Sync for SqliteFtsConfig<'a>
impl<'a> Unpin for SqliteFtsConfig<'a>
impl<'a> UnwindSafe for SqliteFtsConfig<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more