pub trait PostgresBulkWriteable {
// Required method
fn into_bulk_write(self) -> PostgresWrite;
}Expand description
A trait for defining a struct as bulk writeable.
This is typically defined on collections of structs.
Tusk includes a default implementation for VecPostgresWriteable.