Trait ITransactionResource_Impl
pub trait ITransactionResource_Impl: IUnknownImpl {
// Required methods
fn PrepareRequest(
&self,
fretaining: BOOL,
grfrm: u32,
fwantmoniker: BOOL,
fsinglephase: BOOL,
) -> Result<()>;
fn CommitRequest(&self, grfrm: u32, pnewuow: *const BOID) -> Result<()>;
fn AbortRequest(
&self,
pboidreason: *const BOID,
fretaining: BOOL,
pnewuow: *const BOID,
) -> Result<()>;
fn TMDown(&self) -> Result<()>;
}
Required Methods§
fn PrepareRequest( &self, fretaining: BOOL, grfrm: u32, fwantmoniker: BOOL, fsinglephase: BOOL, ) -> Result<()>
fn CommitRequest(&self, grfrm: u32, pnewuow: *const BOID) -> Result<()>
fn AbortRequest( &self, pboidreason: *const BOID, fretaining: BOOL, pnewuow: *const BOID, ) -> Result<()>
fn TMDown(&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.