pub enum BindParam {
Null,
Integer(i64),
Float(f64),
Text(String),
Blob(Vec<u8>),
}Variants§
Trait Implementations§
impl StructuralPartialEq for BindParam
Auto Trait Implementations§
impl Freeze for BindParam
impl RefUnwindSafe for BindParam
impl Send for BindParam
impl Sync for BindParam
impl Unpin for BindParam
impl UnsafeUnpin for BindParam
impl UnwindSafe for BindParam
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