pub trait IRDPSRAPIVirtualChannelManager_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, item: &VARIANT) -> Result<IRDPSRAPIVirtualChannel>;
    fn CreateVirtualChannel(
        &self,
        bstrchannelname: &BSTR,
        priority: CHANNEL_PRIORITY,
        channelflags: u32
    ) -> Result<IRDPSRAPIVirtualChannel>;
}

Required Methods§

fn _NewEnum(&self) -> Result<IUnknown>

fn get_Item(&self, item: &VARIANT) -> Result<IRDPSRAPIVirtualChannel>

fn CreateVirtualChannel( &self, bstrchannelname: &BSTR, priority: CHANNEL_PRIORITY, channelflags: u32 ) -> Result<IRDPSRAPIVirtualChannel>

Object Safety§

This trait is not object safe.

Implementors§