Expand description
Structs§
- Duck
String - Wrapper for underlying duck string type with a lifetime bound to a &mut duckdb_string_t
- Null
- Empty struct that can be used to fill in a query parameter as
NULL. - Ordered
Map - An ordered map of key-value pairs.
Enums§
- Enum
Type - Wrapper type for different enum sizes
- From
SqlError - Enum listing possible errors from
FromSqltrait. - List
Type - Wrapper type for different list sizes
- Time
Unit - An absolute length of time in seconds, milliseconds, microseconds or nanoseconds. Copy from arrow::datatypes::TimeUnit
- ToSql
Output ToSqlOutputrepresents the possible output types for implementers of theToSqltrait.- Type
- DuckDB data types. See Fundamental Datatypes.
- Value
- Owning dynamic type value. Value’s type is typically dictated by DuckDB (not by the caller).
- Value
Ref - A non-owning static type value. Typically the memory backing this value is owned by SQLite.
Traits§
- FromSql
- A trait for types that can be created from a DuckDB value.
- ToSql
- A trait for types that can be converted into DuckDB values. Returns
[
Error::ToSqlConversionFailure] if the conversion fails.
Type Aliases§
- From
SqlResult - Result type for implementors of the
FromSqltrait.