pub enum SettingKey {
Show 55 variants
DoubleQuotedStrings,
Threading,
Debug,
Sync,
WalSync,
DefaultAutomaticIndex,
DefaultAutomaticVacuum,
DefaultForeignKeys,
DefaultMemoryStatus,
EnableAlloca,
EnableApiArmor,
EnableAuthorization,
EnableAutomaticIndex,
EnableAutomaticInitialize,
EnableAutomaticReset,
EnableBlobIo,
EnableColumnDeclaredType,
EnableColumnMetadata,
EnableDatabasePagesVirtualTable,
EnableDatabaseStatisticsVirtualTable,
EnableDatabaseUri,
EnableDeprecated,
EnableGeopoly,
EnableGetTable,
EnableFts3,
EnableFts5,
EnableJson,
EnableLoadExtension,
EnableMemoryManagement,
EnableNormalizeSql,
EnablePreUpdateHook,
EnableProgressCallback,
EnableRtree,
EnableStat4,
EnableSerialize,
EnableSession,
EnableSnapshot,
EnableSharedCache,
EnableSoundex,
EnableTclVariables,
EnableTemporaryDatabase,
EnableTrace,
EnableUtf16,
EnableVirtualTables,
EnableWriteAheadLog,
LikeOperatorCaseSensitive,
LikeOperatorMatchesBlob,
MaxAttachedDatabases,
MaxColumns,
MaxExpressionDepth,
MaxJsonDepth,
MaxVariables,
SecureDelete,
TemporaryStorage,
TrustedSchema,
}
Expand description
Auto-generated discriminant enum variants
Variants§
DoubleQuotedStrings
Threading
Debug
Sync
WalSync
DefaultAutomaticIndex
DefaultAutomaticVacuum
DefaultForeignKeys
DefaultMemoryStatus
EnableAlloca
EnableApiArmor
EnableAuthorization
EnableAutomaticIndex
EnableAutomaticInitialize
EnableAutomaticReset
EnableBlobIo
EnableColumnDeclaredType
EnableColumnMetadata
EnableDatabasePagesVirtualTable
EnableDatabaseStatisticsVirtualTable
EnableDatabaseUri
EnableDeprecated
EnableGeopoly
EnableGetTable
EnableFts3
EnableFts5
EnableJson
EnableLoadExtension
EnableMemoryManagement
EnableNormalizeSql
EnablePreUpdateHook
EnableProgressCallback
EnableRtree
EnableStat4
EnableSerialize
EnableSession
EnableSnapshot
EnableSoundex
EnableTclVariables
EnableTemporaryDatabase
EnableTrace
EnableUtf16
EnableVirtualTables
EnableWriteAheadLog
LikeOperatorCaseSensitive
LikeOperatorMatchesBlob
MaxAttachedDatabases
MaxColumns
MaxExpressionDepth
MaxJsonDepth
MaxVariables
SecureDelete
TemporaryStorage
TrustedSchema
Trait Implementations§
Source§impl Clone for SettingKey
impl Clone for SettingKey
Source§fn clone(&self) -> SettingKey
fn clone(&self) -> SettingKey
Returns a duplicate of the value. Read more
1.0.0 · 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 SettingKey
impl Debug for SettingKey
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 Hash for SettingKey
impl Hash for SettingKey
Source§impl PartialEq for SettingKey
impl PartialEq for SettingKey
impl Copy for SettingKey
impl Eq for SettingKey
impl StructuralPartialEq for SettingKey
Auto Trait Implementations§
impl Freeze for SettingKey
impl RefUnwindSafe for SettingKey
impl Send for SettingKey
impl Sync for SettingKey
impl Unpin for SettingKey
impl UnwindSafe for SettingKey
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