pub trait IRMHelper_Impl: Sized {
    // Required methods
    fn RMCount(&self, dwctotalnumberofrms: u32) -> Result<()>;
    fn RMInfo(
        &self,
        pxa_switch: *mut xa_switch_t,
        fcdeclcallingconv: BOOL,
        pszopenstring: &PCSTR,
        pszclosestring: &PCSTR,
        guidrmrecovery: &GUID
    ) -> Result<()>;
}

Required Methods§

fn RMCount(&self, dwctotalnumberofrms: u32) -> Result<()>

fn RMInfo( &self, pxa_switch: *mut xa_switch_t, fcdeclcallingconv: BOOL, pszopenstring: &PCSTR, pszclosestring: &PCSTR, guidrmrecovery: &GUID ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§