Trait IDataObjectAsyncCapability_Impl
pub trait IDataObjectAsyncCapability_Impl: IUnknownImpl {
// Required methods
fn SetAsyncMode(&self, fdoopasync: BOOL) -> Result<()>;
fn GetAsyncMode(&self) -> Result<BOOL>;
fn StartOperation(&self, pbcreserved: Ref<'_, IBindCtx>) -> Result<()>;
fn InOperation(&self) -> Result<BOOL>;
fn EndOperation(
&self,
hresult: HRESULT,
pbcreserved: Ref<'_, IBindCtx>,
dweffects: u32,
) -> Result<()>;
}
Required Methods§
fn SetAsyncMode(&self, fdoopasync: BOOL) -> Result<()>
fn GetAsyncMode(&self) -> Result<BOOL>
fn StartOperation(&self, pbcreserved: Ref<'_, IBindCtx>) -> Result<()>
fn InOperation(&self) -> Result<BOOL>
fn EndOperation( &self, hresult: HRESULT, pbcreserved: Ref<'_, IBindCtx>, dweffects: u32, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.