Trait IAccStore_Impl
pub trait IAccStore_Impl: IUnknownImpl {
// Required methods
fn Register(&self, riid: *const GUID, punk: Ref<'_, IUnknown>) -> Result<()>;
fn Unregister(&self, punk: Ref<'_, IUnknown>) -> Result<()>;
fn GetDocuments(&self) -> Result<IEnumUnknown>;
fn LookupByHWND(&self, hwnd: HWND, riid: *const GUID) -> Result<IUnknown>;
fn LookupByPoint(&self, pt: &POINT, riid: *const GUID) -> Result<IUnknown>;
fn OnDocumentFocus(&self, punk: Ref<'_, IUnknown>) -> Result<()>;
fn GetFocused(&self, riid: *const GUID) -> Result<IUnknown>;
}
Required Methods§
fn Register(&self, riid: *const GUID, punk: Ref<'_, IUnknown>) -> Result<()>
fn Unregister(&self, punk: Ref<'_, IUnknown>) -> Result<()>
fn GetDocuments(&self) -> Result<IEnumUnknown>
fn LookupByHWND(&self, hwnd: HWND, riid: *const GUID) -> Result<IUnknown>
fn LookupByPoint(&self, pt: &POINT, riid: *const GUID) -> Result<IUnknown>
fn OnDocumentFocus(&self, punk: Ref<'_, IUnknown>) -> Result<()>
fn GetFocused(&self, riid: *const GUID) -> Result<IUnknown>
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.