pub trait ITransaction_Impl: Sized {
    // Required methods
    fn Commit(&self, fretaining: BOOL, grftc: u32, grfrm: u32) -> Result<()>;
    fn Abort(
        &self,
        pboidreason: *const BOID,
        fretaining: BOOL,
        fasync: BOOL
    ) -> Result<()>;
    fn GetTransactionInfo(&self, pinfo: *mut XACTTRANSINFO) -> Result<()>;
}

Required Methods§

fn Commit(&self, fretaining: BOOL, grftc: u32, grfrm: u32) -> Result<()>

fn Abort( &self, pboidreason: *const BOID, fretaining: BOOL, fasync: BOOL ) -> Result<()>

fn GetTransactionInfo(&self, pinfo: *mut XACTTRANSINFO) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§