Trait IDataSourceLocator_Impl
pub trait IDataSourceLocator_Impl: IDispatch_Impl {
// Required methods
fn hWnd(&self) -> Result<HWND>;
fn SethWnd(&self, hwndparent: HWND) -> Result<()>;
fn PromptNew(&self) -> Result<IDispatch>;
fn PromptEdit(
&self,
ppadoconnection: OutRef<'_, IDispatch>,
pbsuccess: *mut VARIANT_BOOL,
) -> Result<()>;
}
Required Methods§
fn hWnd(&self) -> Result<HWND>
fn SethWnd(&self, hwndparent: HWND) -> Result<()>
fn PromptNew(&self) -> Result<IDispatch>
fn PromptEdit( &self, ppadoconnection: OutRef<'_, IDispatch>, pbsuccess: *mut VARIANT_BOOL, ) -> 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.