Trait ITransactionEnlistmentAsync_Impl
pub trait ITransactionEnlistmentAsync_Impl: IUnknownImpl {
// Required methods
fn PrepareRequestDone(
&self,
hr: HRESULT,
pmk: Ref<'_, IMoniker>,
pboidreason: *const BOID,
) -> Result<()>;
fn CommitRequestDone(&self, hr: HRESULT) -> Result<()>;
fn AbortRequestDone(&self, hr: HRESULT) -> Result<()>;
}
Required Methods§
fn PrepareRequestDone( &self, hr: HRESULT, pmk: Ref<'_, IMoniker>, pboidreason: *const BOID, ) -> Result<()>
fn CommitRequestDone(&self, hr: HRESULT) -> Result<()>
fn AbortRequestDone(&self, hr: HRESULT) -> 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.