pub enum ColumnValue {
Binary(Vec<u8>),
Float(f64),
Integer(i64),
String(String),
Null,
}Variants§
Trait Implementations§
Source§impl Into<ColumnValue> for &[u8]
impl Into<ColumnValue> for &[u8]
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for &String
impl Into<ColumnValue> for &String
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for &Vec<u8>
impl Into<ColumnValue> for &Vec<u8>
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for &str
impl Into<ColumnValue> for &str
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for ()
impl Into<ColumnValue> for ()
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for String
impl Into<ColumnValue> for String
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for Vec<u8>
impl Into<ColumnValue> for Vec<u8>
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for f32
impl Into<ColumnValue> for f32
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for f64
impl Into<ColumnValue> for f64
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for i32
impl Into<ColumnValue> for i32
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for i64
impl Into<ColumnValue> for i64
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for u32
impl Into<ColumnValue> for u32
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for u64
impl Into<ColumnValue> for u64
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl Into<ColumnValue> for usize
impl Into<ColumnValue> for usize
Source§fn into(self) -> ColumnValue
fn into(self) -> ColumnValue
Converts this type into the (usually inferred) input type.
Source§impl TryInto<String> for ColumnValue
impl TryInto<String> for ColumnValue
Source§impl TryInto<f64> for ColumnValue
impl TryInto<f64> for ColumnValue
Source§impl TryInto<i64> for ColumnValue
impl TryInto<i64> for ColumnValue
Auto Trait Implementations§
impl Freeze for ColumnValue
impl RefUnwindSafe for ColumnValue
impl Send for ColumnValue
impl Sync for ColumnValue
impl Unpin for ColumnValue
impl UnwindSafe for ColumnValue
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