Enum forensic_rs::traits::sql::ColumnValue
source · 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 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