pub enum DefaultType {
Integer(i32),
Float(f32),
String(String),
Null,
Unspecified,
CurrentTimestamp,
}Available on crate features
sqlite and def only.Expand description
The default types for an SQLite dflt_value
Variantsยง
Trait Implementationsยง
Sourceยงimpl Clone for DefaultType
impl Clone for DefaultType
Sourceยง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 moreSourceยงimpl Debug for DefaultType
impl Debug for DefaultType
Sourceยง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