Crate duckdb_bitstring
source ·Structs§
- Type representing a bitstring that can be converted to a DuckDB BIT type (or the other way around). Under the hood this is just a wrapper for
bit_vec::BitVecwith the necessary traits (FromSql/ToSql) implemented. UseBitstring::fromto obtain aBitstringfrom an owned or borrowedbit_vec::BitVec.