Enum sqlx_core::sqlite::SqliteSynchronous
source · [−]pub enum SqliteSynchronous {
Off,
Normal,
Full,
Extra,
}
Expand description
Refer to SQLite documentation for the meaning of various synchronous settings.
Variants
Off
Normal
Full
Extra
Trait Implementations
sourceimpl Clone for SqliteSynchronous
impl Clone for SqliteSynchronous
sourcefn clone(&self) -> SqliteSynchronous
fn clone(&self) -> SqliteSynchronous
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SqliteSynchronous
impl Debug for SqliteSynchronous
sourceimpl Default for SqliteSynchronous
impl Default for SqliteSynchronous
sourceimpl FromStr for SqliteSynchronous
impl FromStr for SqliteSynchronous
impl Copy for SqliteSynchronous
impl Eq for SqliteSynchronous
impl StructuralEq for SqliteSynchronous
impl StructuralPartialEq for SqliteSynchronous
Auto Trait Implementations
impl RefUnwindSafe for SqliteSynchronous
impl Send for SqliteSynchronous
impl Sync for SqliteSynchronous
impl Unpin for SqliteSynchronous
impl UnwindSafe for SqliteSynchronous
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.