pub trait IObjectContext_Impl: Sized {
    // Required methods
    fn CreateInstance(
        &self,
        rclsid: *const GUID,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
    fn SetComplete(&self) -> Result<()>;
    fn SetAbort(&self) -> Result<()>;
    fn EnableCommit(&self) -> Result<()>;
    fn DisableCommit(&self) -> Result<()>;
    fn IsInTransaction(&self) -> BOOL;
    fn IsSecurityEnabled(&self) -> BOOL;
    fn IsCallerInRole(
        &self,
        bstrrole: &BSTR,
        pfisinrole: *mut BOOL
    ) -> Result<()>;
}

Required Methods§

fn CreateInstance( &self, rclsid: *const GUID, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>

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

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

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

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

fn IsInTransaction(&self) -> BOOL

fn IsSecurityEnabled(&self) -> BOOL

fn IsCallerInRole(&self, bstrrole: &BSTR, pfisinrole: *mut BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§