Trait ITransactionOutcomeEvents_Impl
pub trait ITransactionOutcomeEvents_Impl: IUnknownImpl {
// Required methods
fn Committed(
&self,
fretaining: BOOL,
pnewuow: *const BOID,
hr: HRESULT,
) -> Result<()>;
fn Aborted(
&self,
pboidreason: *const BOID,
fretaining: BOOL,
pnewuow: *const BOID,
hr: HRESULT,
) -> Result<()>;
fn HeuristicDecision(
&self,
dwdecision: u32,
pboidreason: *const BOID,
hr: HRESULT,
) -> Result<()>;
fn Indoubt(&self) -> Result<()>;
}
Required Methods§
fn Committed( &self, fretaining: BOOL, pnewuow: *const BOID, hr: HRESULT, ) -> Result<()>
fn Aborted( &self, pboidreason: *const BOID, fretaining: BOOL, pnewuow: *const BOID, hr: HRESULT, ) -> Result<()>
fn HeuristicDecision( &self, dwdecision: u32, pboidreason: *const BOID, hr: HRESULT, ) -> Result<()>
fn Indoubt(&self) -> 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.