pub trait ISideShowContentManager_Impl: Sized {
    // Required methods
    fn Add(&self, in_picontent: Option<&ISideShowContent>) -> Result<()>;
    fn Remove(&self, in_contentid: u32) -> Result<()>;
    fn RemoveAll(&self) -> Result<()>;
    fn SetEventSink(&self, in_pievents: Option<&ISideShowEvents>) -> Result<()>;
    fn GetDeviceCapabilities(&self) -> Result<ISideShowCapabilitiesCollection>;
}

Required Methods§

fn Add(&self, in_picontent: Option<&ISideShowContent>) -> Result<()>

fn Remove(&self, in_contentid: u32) -> Result<()>

fn RemoveAll(&self) -> Result<()>

fn SetEventSink(&self, in_pievents: Option<&ISideShowEvents>) -> Result<()>

fn GetDeviceCapabilities(&self) -> Result<ISideShowCapabilitiesCollection>

Object Safety§

This trait is not object safe.

Implementors§