pub enum DbValue<'a> {
Text(&'a str),
Integer(i64),
Real(f64),
NullVal,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DbValue<'a>
impl<'a> RefUnwindSafe for DbValue<'a>
impl<'a> Send for DbValue<'a>
impl<'a> Sync for DbValue<'a>
impl<'a> Unpin for DbValue<'a>
impl<'a> UnwindSafe for DbValue<'a>
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