pub enum TempStore {
Default,
File,
Memory,
}Expand description
Storage modes for temporary tables and indices
Variants§
Trait Implementations§
Source§impl<'a> ToSQL<'a, SQLiteValue<'a>> for TempStore
impl<'a> ToSQL<'a, SQLiteValue<'a>> for TempStore
fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>>
Source§fn into_sql(self) -> SQL<'a, V>where
Self: Sized,
fn into_sql(self) -> SQL<'a, V>where
Self: Sized,
Consume self and return SQL without cloning.
Default delegates to
to_sql() (which clones). Types that own their SQL
(like SQL and SQLExpr) override this to avoid the clone.fn alias(&self, alias: &'static str) -> SQL<'a, V>
impl StructuralPartialEq for TempStore
Auto Trait Implementations§
impl Freeze for TempStore
impl RefUnwindSafe for TempStore
impl Send for TempStore
impl Sync for TempStore
impl Unpin for TempStore
impl UnwindSafe for TempStore
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