Module batch_insert_support

Source
Available on crate feature i-implement-a-third-party-backend-and-opt-into-breaking-changes only.
Expand description

This module contains all reusable options to configure SqlDialect::BatchInsertSupport

Structs§

DoesNotSupportBatchInsert
Indicates that this backend does not support batch insert statements. In this case diesel will emulate batch insert support by inserting each row on its own
PostgresLikeBatchInsertSupport
Indicates that this backend supports postgres style batch insert statements to insert multiple rows using one insert statement

Traits§

SupportsBatchInsert
A marker trait indicating if batch insert statements are supported for this backend or not