Trait IAMPluginControl_Impl
pub trait IAMPluginControl_Impl: IUnknownImpl {
// Required methods
fn GetPreferredClsid(&self, subtype: *const GUID) -> Result<GUID>;
fn GetPreferredClsidByIndex(
&self,
index: u32,
subtype: *mut GUID,
clsid: *mut GUID,
) -> Result<()>;
fn SetPreferredClsid(
&self,
subtype: *const GUID,
clsid: *const GUID,
) -> Result<()>;
fn IsDisabled(&self, clsid: *const GUID) -> Result<()>;
fn GetDisabledByIndex(&self, index: u32) -> Result<GUID>;
fn SetDisabled(&self, clsid: *const GUID, disabled: BOOL) -> Result<()>;
fn IsLegacyDisabled(&self, dllname: &PCWSTR) -> Result<()>;
}
Required Methods§
fn GetPreferredClsid(&self, subtype: *const GUID) -> Result<GUID>
fn GetPreferredClsidByIndex( &self, index: u32, subtype: *mut GUID, clsid: *mut GUID, ) -> Result<()>
fn SetPreferredClsid( &self, subtype: *const GUID, clsid: *const GUID, ) -> Result<()>
fn IsDisabled(&self, clsid: *const GUID) -> Result<()>
fn GetDisabledByIndex(&self, index: u32) -> Result<GUID>
fn SetDisabled(&self, clsid: *const GUID, disabled: BOOL) -> Result<()>
fn IsLegacyDisabled(&self, dllname: &PCWSTR) -> 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.