Enum DefaultType
pub enum DefaultType {
Integer(i64),
Float(f32),
String(String),
Null,
Unspecified,
CurrentTimestamp,
}Expand description
The default types for an SQLite dflt_value
Variants§
Trait Implementations§
§impl Clone for DefaultType
impl Clone for DefaultType
§fn clone(&self) -> DefaultType
fn clone(&self) -> DefaultType
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 more§impl Debug for DefaultType
impl Debug for DefaultType
§impl PartialEq for DefaultType
impl PartialEq for DefaultType
impl StructuralPartialEq for DefaultType
Auto Trait Implementations§
impl Freeze for DefaultType
impl RefUnwindSafe for DefaultType
impl Send for DefaultType
impl Sync for DefaultType
impl Unpin for DefaultType
impl UnwindSafe for DefaultType
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