Crate serde_db

Source
Expand description

Support for deserializing database result sets and rows into rust types, and for serializing rust types into database parameter values.

Being based on serde, this crate can facilitate the data exchange between applications and a database driver. It is meant to be used by the implementors of database drivers, who then can expose a more comfortable driver API.

See the module descriptions for more details and usage examples.

Modulesยง

de
Support for deserializing database result sets, and/or individual database rows, and/or individual database values, into rust types.
ser
Support for serializing rust types into parameters for database commands.