pub enum SqlType {
Text(String),
Integer(i64),
Floating(f64),
Timestamp(NaiveDateTime),
Binary(Vec<u8>),
Boolean(bool),
Null,
}Expand description
Sql parameter / column data
Variants§
Text(String)
Integer(i64)
Floating(f64)
Timestamp(NaiveDateTime)
Binary(Vec<u8>)
Boolean(bool)
Only works in fb >= 3.0
Null
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqlType
impl RefUnwindSafe for SqlType
impl Send for SqlType
impl Sync for SqlType
impl Unpin for SqlType
impl UnwindSafe for SqlType
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