Enum sqlx_oldapi::sqlite::SqliteJournalMode  
source ยท pub enum SqliteJournalMode {
    Delete,
    Truncate,
    Persist,
    Memory,
    Wal,
    Off,
}Available on crate feature 
sqlite only.Expand description
Refer to SQLite documentation for the meaning of the database journaling mode.
Variantsยง
Trait Implementationsยง
sourceยงimpl Clone for SqliteJournalMode
 
impl Clone for SqliteJournalMode
sourceยงfn clone(&self) -> SqliteJournalMode
 
fn clone(&self) -> SqliteJournalMode
Returns a copy 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 SqliteJournalMode
 
impl Debug for SqliteJournalMode
sourceยงimpl Default for SqliteJournalMode
 
impl Default for SqliteJournalMode
sourceยงfn default() -> SqliteJournalMode
 
fn default() -> SqliteJournalMode
Returns the โdefault valueโ for a type. Read more
sourceยงimpl FromStr for SqliteJournalMode
 
impl FromStr for SqliteJournalMode
sourceยงimpl PartialEq<SqliteJournalMode> for SqliteJournalMode
 
impl PartialEq<SqliteJournalMode> for SqliteJournalMode
sourceยงfn eq(&self, other: &SqliteJournalMode) -> bool
 
fn eq(&self, other: &SqliteJournalMode) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for SqliteJournalMode
impl Eq for SqliteJournalMode
impl StructuralEq for SqliteJournalMode
impl StructuralPartialEq for SqliteJournalMode
Auto Trait Implementationsยง
impl RefUnwindSafe for SqliteJournalMode
impl Send for SqliteJournalMode
impl Sync for SqliteJournalMode
impl Unpin for SqliteJournalMode
impl UnwindSafe for SqliteJournalMode
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
ยงimpl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
ยงfn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
ยงimpl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
ยงfn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.