Struct sqlite_loadable::vtab_argparse::ConfigOption
source · 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<ConfigOption> for ConfigOption
impl PartialEq<ConfigOption> for ConfigOption
source§fn eq(&self, other: &ConfigOption) -> bool
fn eq(&self, other: &ConfigOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.