windows::Win32::System::ComponentServices

Trait ICrmLogControl_Impl

pub trait ICrmLogControl_Impl: IUnknownImpl {
    // Required methods
    fn TransactionUOW(&self) -> Result<BSTR>;
    fn RegisterCompensator(
        &self,
        lpcwstrprogidcompensator: &PCWSTR,
        lpcwstrdescription: &PCWSTR,
        lcrmregflags: i32,
    ) -> Result<()>;
    fn WriteLogRecordVariants(&self, plogrecord: *const VARIANT) -> Result<()>;
    fn ForceLog(&self) -> Result<()>;
    fn ForgetLogRecord(&self) -> Result<()>;
    fn ForceTransactionToAbort(&self) -> Result<()>;
    fn WriteLogRecord(&self, rgblob: *const BLOB, cblob: u32) -> Result<()>;
}

Required Methods§

fn TransactionUOW(&self) -> Result<BSTR>

fn RegisterCompensator( &self, lpcwstrprogidcompensator: &PCWSTR, lpcwstrdescription: &PCWSTR, lcrmregflags: i32, ) -> Result<()>

fn WriteLogRecordVariants(&self, plogrecord: *const VARIANT) -> Result<()>

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

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

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

fn WriteLogRecord(&self, rgblob: *const BLOB, cblob: u32) -> 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.

Implementors§