Skip to main content

tano_database/
bulk_builder.rs

1use sqlx::{QueryBuilder, Sqlite};
2
3pub trait BulkBuilder {
4    type Item<'a>;
5    fn push(&mut self, item: Self::Item<'_>);
6    fn build(self) -> QueryBuilder<Sqlite>;
7}