pgx 0.7.4

pgx: A Rust framework for creating Postgres extensions
Documentation
1
2
3
4
5
6
7
8
9
/// Indicates which trigger tuple to convert into a [crate::PgHeapTuple].
#[derive(Debug, Copy, Clone)]
pub enum TriggerTuple {
    /// Represents the new database row for INSERT/UPDATE operations in row-level triggers.
    New,

    /// Represents the old database row for UPDATE/DELETE operations in row-level triggers.
    Old,
}