pub enum BindValue {
Text(String),
Integer(i64),
Bool(bool),
}Expand description
A typed bind value for a compiled SQL query parameter.
Variants§
Text(String)
A UTF-8 text parameter.
Integer(i64)
A 64-bit signed integer parameter.
Bool(bool)
A boolean parameter.
Trait Implementations§
impl Eq for BindValue
impl StructuralPartialEq for BindValue
Auto Trait Implementations§
impl Freeze for BindValue
impl RefUnwindSafe for BindValue
impl Send for BindValue
impl Sync for BindValue
impl Unpin for BindValue
impl UnsafeUnpin for BindValue
impl UnwindSafe for BindValue
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