Trait IRDPSRAPIVirtualChannel_Impl
pub trait IRDPSRAPIVirtualChannel_Impl: 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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.