pub struct ConfigOption {
pub key: String,
pub value: ConfigOptionValue,
}
Expand description
A parsed configuration option, that always contain a key/value
pair. These can be used as “table-options” to configure special
behavior or settings for the virtual table implementation.
Example: the tokenize
and prefix
config options on FTS5
virtual tables https://www.sqlite.org/fts5.html#fts5_table_creation_and_initialization
Fields§
§key: String
§value: ConfigOptionValue
Trait Implementations§
Source§impl Debug for ConfigOption
impl Debug for ConfigOption
Source§impl PartialEq for ConfigOption
impl PartialEq for ConfigOption
impl Eq for ConfigOption
impl StructuralPartialEq for ConfigOption
Auto Trait Implementations§
impl Freeze for ConfigOption
impl RefUnwindSafe for ConfigOption
impl Send for ConfigOption
impl Sync for ConfigOption
impl Unpin for ConfigOption
impl UnwindSafe for ConfigOption
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