Expand description
Stream serde data directly into SQLite value lists.
The crate focuses on emitting SQL without allocating intermediate data
structures. Call serialize_insert with a buffer and any
serde::Serialize struct to append a value list of the form
(value1, value2, ...).
Functionsยง
- serialize_
insert - Serialises a struct into
bufferas(value1, value2, ...).