pub trait ITSGAccountingEngine_Impl: Sized {
    // Required method
    fn DoAccounting(
        &self,
        accountingdatatype: AAAccountingDataType,
        accountingdata: &AAAccountingData,
    ) -> Result<()>;
}

Required Methods§

fn DoAccounting( &self, accountingdatatype: AAAccountingDataType, accountingdata: &AAAccountingData, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§