tokio-rs / rdbc

Rust DataBase Connectivity (RDBC) :: Common Rust API for database drivers
Apache License 2.0
569 stars 25 forks source link

Avoid heap allocation #47

Closed gwenn closed 4 years ago

gwenn commented 4 years ago

Use standard IntoIterator to transform [rdbc::Value] to [&dyn rusqlite::ToSql]. No Vec, no Box anymore.