pub enum Setting {
Show 55 variants
DoubleQuotedStrings {
in_ddl: bool,
in_dml: bool,
},
Threading(Threading),
Debug(bool),
Sync(Synchronous),
WalSync(Synchronous),
DefaultAutomaticIndex(bool),
DefaultAutomaticVacuum(bool),
DefaultForeignKeys(bool),
DefaultMemoryStatus(bool),
EnableAlloca(bool),
EnableApiArmor(bool),
EnableAuthorization(bool),
EnableAutomaticIndex(bool),
EnableAutomaticInitialize(bool),
EnableAutomaticReset(bool),
EnableBlobIo(bool),
EnableColumnDeclaredType(bool),
EnableColumnMetadata(bool),
EnableDatabasePagesVirtualTable(bool),
EnableDatabaseStatisticsVirtualTable(bool),
EnableDatabaseUri(bool),
EnableDeprecated(bool),
EnableGeopoly(bool),
EnableGetTable(bool),
EnableFts3(bool),
EnableFts5(bool),
EnableJson(bool),
EnableLoadExtension(bool),
EnableMemoryManagement(bool),
EnableNormalizeSql(bool),
EnablePreUpdateHook(bool),
EnableProgressCallback(bool),
EnableRtree(bool),
EnableStat4(bool),
EnableSerialize(bool),
EnableSession(bool),
EnableSnapshot(bool),
EnableSharedCache(bool),
EnableSoundex(bool),
EnableTclVariables(bool),
EnableTemporaryDatabase(bool),
EnableTrace(bool),
EnableUtf16(bool),
EnableVirtualTables(bool),
EnableWriteAheadLog(bool),
LikeOperatorCaseSensitive(bool),
LikeOperatorMatchesBlob(bool),
MaxAttachedDatabases(usize),
MaxColumns(usize),
MaxExpressionDepth(usize),
MaxJsonDepth(usize),
MaxVariables(usize),
SecureDelete(bool),
TemporaryStorage(TemporaryStorage),
TrustedSchema(bool),
}
Expand description
A compile-time option for a SQLite build
.
Variants§
DoubleQuotedStrings
Threading(Threading)
Debug(bool)
Sync(Synchronous)
WalSync(Synchronous)
DefaultAutomaticIndex(bool)
DefaultAutomaticVacuum(bool)
DefaultForeignKeys(bool)
DefaultMemoryStatus(bool)
EnableAlloca(bool)
EnableApiArmor(bool)
EnableAuthorization(bool)
EnableAutomaticIndex(bool)
EnableAutomaticInitialize(bool)
EnableAutomaticReset(bool)
EnableBlobIo(bool)
EnableColumnDeclaredType(bool)
EnableColumnMetadata(bool)
EnableDatabasePagesVirtualTable(bool)
EnableDatabaseStatisticsVirtualTable(bool)
EnableDatabaseUri(bool)
EnableDeprecated(bool)
EnableGeopoly(bool)
EnableGetTable(bool)
EnableFts3(bool)
EnableFts5(bool)
EnableJson(bool)
EnableLoadExtension(bool)
EnableMemoryManagement(bool)
EnableNormalizeSql(bool)
EnablePreUpdateHook(bool)
EnableProgressCallback(bool)
EnableRtree(bool)
EnableStat4(bool)
EnableSerialize(bool)
EnableSession(bool)
EnableSnapshot(bool)
EnableSoundex(bool)
EnableTclVariables(bool)
EnableTemporaryDatabase(bool)
EnableTrace(bool)
EnableUtf16(bool)
EnableVirtualTables(bool)
EnableWriteAheadLog(bool)
LikeOperatorCaseSensitive(bool)
LikeOperatorMatchesBlob(bool)
MaxAttachedDatabases(usize)
MaxColumns(usize)
MaxExpressionDepth(usize)
MaxJsonDepth(usize)
MaxVariables(usize)
SecureDelete(bool)
TemporaryStorage(TemporaryStorage)
TrustedSchema(bool)
Trait Implementations§
Source§impl<'_enum> From<&'_enum Setting> for SettingKey
impl<'_enum> From<&'_enum Setting> for SettingKey
Source§fn from(val: &'_enum Setting) -> SettingKey
fn from(val: &'_enum Setting) -> SettingKey
Converts to this type from the input type.
Source§impl From<Setting> for SettingKey
impl From<Setting> for SettingKey
Source§fn from(val: Setting) -> SettingKey
fn from(val: Setting) -> SettingKey
Converts to this type from the input type.
Source§impl IntoDiscriminant for Setting
impl IntoDiscriminant for Setting
Source§type Discriminant = SettingKey
type Discriminant = SettingKey
Enum listing the same variants as this enum but without any data fields
fn discriminant(&self) -> Self::Discriminant
impl Copy for Setting
impl Eq for Setting
impl StructuralPartialEq for Setting
Auto Trait Implementations§
impl Freeze for Setting
impl RefUnwindSafe for Setting
impl Send for Setting
impl Sync for Setting
impl Unpin for Setting
impl UnwindSafe for Setting
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