pub trait IDataObjectAsyncCapability_Impl: Sized {
    // Required methods
    fn SetAsyncMode(&self, fdoopasync: BOOL) -> Result<()>;
    fn GetAsyncMode(&self) -> Result<BOOL>;
    fn StartOperation(&self, pbcreserved: Option<&IBindCtx>) -> Result<()>;
    fn InOperation(&self) -> Result<BOOL>;
    fn EndOperation(
        &self,
        hresult: HRESULT,
        pbcreserved: Option<&IBindCtx>,
        dweffects: u32
    ) -> Result<()>;
}

Required Methods§

fn SetAsyncMode(&self, fdoopasync: BOOL) -> Result<()>

fn GetAsyncMode(&self) -> Result<BOOL>

fn StartOperation(&self, pbcreserved: Option<&IBindCtx>) -> Result<()>

fn InOperation(&self) -> Result<BOOL>

fn EndOperation( &self, hresult: HRESULT, pbcreserved: Option<&IBindCtx>, dweffects: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§