#[non_exhaustive]#[repr(i32)]pub enum VTabConfig {
ConstraintSupport = 1,
Innocuous = 2,
DirectOnly = 3,
}Available on crate feature
vtab only.Expand description
Virtual table configuration options
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ConstraintSupport = 1
Equivalent to SQLITE_VTAB_CONSTRAINT_SUPPORT
Innocuous = 2
Equivalent to SQLITE_VTAB_INNOCUOUS
DirectOnly = 3
Equivalent to SQLITE_VTAB_DIRECTONLY
Trait Implementations§
Source§impl Clone for VTabConfig
impl Clone for VTabConfig
Source§fn clone(&self) -> VTabConfig
fn clone(&self) -> VTabConfig
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 VTabConfig
impl Debug for VTabConfig
Source§impl PartialEq for VTabConfig
impl PartialEq for VTabConfig
impl Copy for VTabConfig
impl Eq for VTabConfig
impl StructuralPartialEq for VTabConfig
Auto Trait Implementations§
impl Freeze for VTabConfig
impl RefUnwindSafe for VTabConfig
impl Send for VTabConfig
impl Sync for VTabConfig
impl Unpin for VTabConfig
impl UnwindSafe for VTabConfig
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