[][src]Struct pgx::callbacks::XactCallbackReceipt

pub struct XactCallbackReceipt(_);

Registering a transaction event callback returns a XactCallbackReceipt that can be used to unregister the callback if it later (within the confines of the current transaction) becomes unnecessary

Implementations

impl XactCallbackReceipt[src]

pub fn unregister_callback(self)[src]

Consumes this XactCallbackReceipt and unregisters the registered callback it represents

Examples

use pgx::*;

let receipt = register_xact_callback(PgXactCallbackEvent::Commit, || info!("called after commit"));

let no_longer_necessary = true;

if no_longer_necessary {
    receipt.unregister_callback();
}

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,