pub enum Value {
}
Expand description
Owning dynamic type value. Value’s type is typically dictated by DuckDB (not by the caller).
See ValueRef
for a non-owning dynamic type
value.
Variants§
Null
The value is a NULL
value.
Boolean(bool)
The value is a boolean.
TinyInt(i8)
The value is a signed tiny integer.
SmallInt(i16)
The value is a signed small integer.
Int(i32)
The value is a signed integer.
BigInt(i64)
The value is a signed big integer.
HugeInt(i128)
The value is a signed huge integer.
UTinyInt(u8)
The value is a unsigned tiny integer.
USmallInt(u16)
The value is a unsigned small integer.
UInt(u32)
The value is a unsigned integer.
UBigInt(u64)
The value is a unsigned big integer.
Float(f32)
The value is a f32.
Double(f64)
The value is a f64.
Decimal(Decimal)
The value is a Decimal.
Timestamp(TimeUnit, i64)
The value is a timestap.
Text(String)
The value is a text string.
Blob(Vec<u8>)
The value is a blob of data
Date32(i32)
The value is a date32
Time64(TimeUnit, i64)
The value is a time64
Implementations§
Trait Implementations§
source§impl FromSql for Value
impl FromSql for Value
source§fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>
fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>
Converts DuckDB value into Rust value.
source§impl PartialEq<Value> for Value
impl PartialEq<Value> for Value
source§impl ToSql for Value
impl ToSql for Value
source§fn to_sql(&self) -> Result<ToSqlOutput<'_>>
fn to_sql(&self) -> Result<ToSqlOutput<'_>>
Converts Rust value to DuckDB value