pub trait ICrmMonitorLogRecords_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§