[][src]Struct pgx::callbacks::SubXactCallbackReceipt

pub struct SubXactCallbackReceipt(_);

Registering a sub-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 SubXactCallbackReceipt[src]

pub fn unregister_callback(self)[src]

Consumes this SubXactCallbackReceipt and unregisters the registered callback it represents

Examples

use pgx::*;

let receipt = register_subxact_callback(PgSubXactCallbackEvent::CommitSub, |my_subid, parent_subid| info!("called after commit-sub: {} {}", my_subid, parent_subid));

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>,