windows::Win32::System::DistributedTransactionCoordinator

Trait ITransaction_Impl

pub trait ITransaction_Impl: IUnknownImpl {
    // 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<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§