pub trait ICastingController_Impl: Sized {
    // Required methods
    fn Initialize(
        &self,
        castingengine: Option<&IUnknown>,
        castingsource: Option<&IUnknown>
    ) -> Result<()>;
    fn Connect(&self) -> Result<()>;
    fn Disconnect(&self) -> Result<()>;
    fn Advise(&self, eventhandler: Option<&ICastingEventHandler>) -> Result<u32>;
    fn UnAdvise(&self, cookie: u32) -> Result<()>;
}

Required Methods§

fn Initialize( &self, castingengine: Option<&IUnknown>, castingsource: Option<&IUnknown> ) -> Result<()>

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

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

fn Advise(&self, eventhandler: Option<&ICastingEventHandler>) -> Result<u32>

fn UnAdvise(&self, cookie: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§