pub enum Utf8SqlValue {
Text(String),
Blob(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for Utf8SqlValue
impl Clone for Utf8SqlValue
Source§fn clone(&self) -> Utf8SqlValue
fn clone(&self) -> Utf8SqlValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Utf8SqlValue
impl Debug for Utf8SqlValue
Source§impl PartialEq for Utf8SqlValue
impl PartialEq for Utf8SqlValue
Source§fn eq(&self, other: &Utf8SqlValue) -> bool
fn eq(&self, other: &Utf8SqlValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Utf8SqlValue
impl StructuralPartialEq for Utf8SqlValue
Auto Trait Implementations§
impl Freeze for Utf8SqlValue
impl RefUnwindSafe for Utf8SqlValue
impl Send for Utf8SqlValue
impl Sync for Utf8SqlValue
impl Unpin for Utf8SqlValue
impl UnsafeUnpin for Utf8SqlValue
impl UnwindSafe for Utf8SqlValue
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