diesel/pg/upsert/
mod.rs

1//! Types and functions related to PG's `ON CONFLICT` clause
2//!
3//! See [the methods on `InsertStatement`](../../query_builder/struct.InsertStatement.html#impl-1)
4//! for usage examples.
5
6mod on_conflict_actions;
7mod on_conflict_clause;
8mod on_conflict_extension;
9mod on_conflict_target;
10
11pub use self::on_conflict_actions::excluded;
12pub use self::on_conflict_extension::*;
13pub use self::on_conflict_target::on_constraint;