Trait ISideShowContentManager_Impl
pub trait ISideShowContentManager_Impl: IUnknownImpl {
// Required methods
fn Add(&self, in_picontent: Ref<'_, ISideShowContent>) -> Result<()>;
fn Remove(&self, in_contentid: u32) -> Result<()>;
fn RemoveAll(&self) -> Result<()>;
fn SetEventSink(&self, in_pievents: Ref<'_, ISideShowEvents>) -> Result<()>;
fn GetDeviceCapabilities(&self) -> Result<ISideShowCapabilitiesCollection>;
}
Required Methods§
fn Add(&self, in_picontent: Ref<'_, ISideShowContent>) -> Result<()>
fn Remove(&self, in_contentid: u32) -> Result<()>
fn RemoveAll(&self) -> Result<()>
fn SetEventSink(&self, in_pievents: Ref<'_, ISideShowEvents>) -> Result<()>
fn GetDeviceCapabilities(&self) -> Result<ISideShowCapabilitiesCollection>
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.