pub trait IWTSProtocolListener_Impl: Sized {
    // Required methods
    fn StartListen(
        &self,
        pcallback: Option<&IWTSProtocolListenerCallback>,
    ) -> Result<()>;
    fn StopListen(&self) -> Result<()>;
}

Required Methods§

fn StartListen( &self, pcallback: Option<&IWTSProtocolListenerCallback>, ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§