pub trait ITransactionContext_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CreateInstance(&self, pszprogid: &BSTR) -> Result<VARIANT>;
    fn Commit(&self) -> Result<()>;
    fn Abort(&self) -> Result<()>;
}

Required Methods§

fn CreateInstance(&self, pszprogid: &BSTR) -> Result<VARIANT>

fn Commit(&self) -> Result<()>

fn Abort(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§