pub enum SqlParam {
I32(i32),
I64(i64),
Bool(bool),
Text(String),
Uuid(Uuid),
Decimal(Decimal),
DateTime(NaiveDateTime),
Bytes(Vec<u8>),
Null,
}Variants§
I32(i32)
I64(i64)
Bool(bool)
Text(String)
Uuid(Uuid)
Decimal(Decimal)
DateTime(NaiveDateTime)
Bytes(Vec<u8>)
Null
Trait Implementations§
impl StructuralPartialEq for SqlParam
Auto Trait Implementations§
impl Freeze for SqlParam
impl RefUnwindSafe for SqlParam
impl Send for SqlParam
impl Sync for SqlParam
impl Unpin for SqlParam
impl UnwindSafe for SqlParam
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