windows::Win32::System::ComponentServices

Trait ICrmMonitorLogRecords_Impl

pub trait ICrmMonitorLogRecords_Impl: IUnknownImpl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn TransactionState(&self) -> Result<CrmTransactionState>;
    fn StructuredRecords(&self) -> Result<VARIANT_BOOL>;
    fn GetLogRecord(
        &self,
        dwindex: u32,
        pcrmlogrec: *mut CrmLogRecordRead,
    ) -> Result<()>;
    fn GetLogRecordVariants(&self, indexnumber: &VARIANT) -> Result<VARIANT>;
}

Required Methods§

fn Count(&self) -> Result<i32>

fn TransactionState(&self) -> Result<CrmTransactionState>

fn StructuredRecords(&self) -> Result<VARIANT_BOOL>

fn GetLogRecord( &self, dwindex: u32, pcrmlogrec: *mut CrmLogRecordRead, ) -> Result<()>

fn GetLogRecordVariants(&self, indexnumber: &VARIANT) -> Result<VARIANT>

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§