pub trait ICastingEventHandler_Impl: Sized {
    // Required methods
    fn OnStateChanged(&self, newstate: CASTING_CONNECTION_STATE) -> Result<()>;
    fn OnError(
        &self,
        errorstatus: CASTING_CONNECTION_ERROR_STATUS,
        errormessage: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn OnStateChanged(&self, newstate: CASTING_CONNECTION_STATE) -> Result<()>

fn OnError( &self, errorstatus: CASTING_CONNECTION_ERROR_STATUS, errormessage: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§