pub struct FtsCapability {
pub table: String,
pub columns: Vec<String>,
}Fields§
§table: StringDiscovered virtual table name (e.g. TMTask_searchstr_data).
columns: Vec<String>Columns the FTS5 index exposes (from PRAGMA table_info).
Trait Implementations§
Source§impl Clone for FtsCapability
impl Clone for FtsCapability
Source§fn clone(&self) -> FtsCapability
fn clone(&self) -> FtsCapability
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 FtsCapability
impl Debug for FtsCapability
Source§impl PartialEq for FtsCapability
impl PartialEq for FtsCapability
Source§fn eq(&self, other: &FtsCapability) -> bool
fn eq(&self, other: &FtsCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FtsCapability
impl StructuralPartialEq for FtsCapability
Auto Trait Implementations§
impl Freeze for FtsCapability
impl RefUnwindSafe for FtsCapability
impl Send for FtsCapability
impl Sync for FtsCapability
impl Unpin for FtsCapability
impl UnsafeUnpin for FtsCapability
impl UnwindSafe for FtsCapability
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