#[repr(C)]pub struct TriggerData {
pub type_: NodeTag,
pub tg_event: TriggerEvent,
pub tg_relation: Relation,
pub tg_trigtuple: HeapTuple,
pub tg_newtuple: HeapTuple,
pub tg_trigger: *mut Trigger,
pub tg_trigslot: *mut TupleTableSlot,
pub tg_newslot: *mut TupleTableSlot,
pub tg_oldtable: *mut Tuplestorestate,
pub tg_newtable: *mut Tuplestorestate,
pub tg_updatedcols: *const Bitmapset,
}
Fields§
§type_: NodeTag
§tg_event: TriggerEvent
§tg_relation: Relation
§tg_trigtuple: HeapTuple
§tg_newtuple: HeapTuple
§tg_trigger: *mut Trigger
§tg_trigslot: *mut TupleTableSlot
§tg_newslot: *mut TupleTableSlot
§tg_oldtable: *mut Tuplestorestate
§tg_newtable: *mut Tuplestorestate
§tg_updatedcols: *const Bitmapset
Trait Implementations§
Source§impl Clone for TriggerData
impl Clone for TriggerData
Source§fn clone(&self) -> TriggerData
fn clone(&self) -> TriggerData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TriggerData
impl Debug for TriggerData
Source§impl Default for TriggerData
impl Default for TriggerData
Source§impl Display for TriggerData
impl Display for TriggerData
Source§impl PgNode for TriggerData
impl PgNode for TriggerData
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for TriggerData
Auto Trait Implementations§
impl Freeze for TriggerData
impl RefUnwindSafe for TriggerData
impl !Send for TriggerData
impl !Sync for TriggerData
impl Unpin for TriggerData
impl UnwindSafe for TriggerData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more