pub trait ITransactionEnlistmentAsync_Impl: Sized {
// Required methods
fn PrepareRequestDone(
&self,
hr: HRESULT,
pmk: Option<&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: Option<&IMoniker>, pboidreason: *const BOID, ) -> Result<()>
fn CommitRequestDone(&self, hr: HRESULT) -> Result<()>
fn AbortRequestDone(&self, hr: HRESULT) -> Result<()>
Object Safety§
This trait is not object safe.