pub trait IRDPSRAPIVirtualChannel_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn SendData(
        &self,
        bstrdata: &BSTR,
        lattendeeid: i32,
        channelsendflags: u32
    ) -> Result<()>;
    fn SetAccess(
        &self,
        lattendeeid: i32,
        accesstype: CHANNEL_ACCESS_ENUM
    ) -> Result<()>;
    fn Name(&self) -> Result<BSTR>;
    fn Flags(&self) -> Result<i32>;
    fn Priority(&self) -> Result<CHANNEL_PRIORITY>;
}

Required Methods§

fn SendData( &self, bstrdata: &BSTR, lattendeeid: i32, channelsendflags: u32 ) -> Result<()>

fn SetAccess( &self, lattendeeid: i32, accesstype: CHANNEL_ACCESS_ENUM ) -> Result<()>

fn Name(&self) -> Result<BSTR>

fn Flags(&self) -> Result<i32>

fn Priority(&self) -> Result<CHANNEL_PRIORITY>

Object Safety§

This trait is not object safe.

Implementors§