windows::Win32::System::DesktopSharing

Trait IRDPSRAPIWindow_Impl

pub trait IRDPSRAPIWindow_Impl: IDispatch_Impl {
    // Required methods
    fn Id(&self) -> Result<i32>;
    fn Application(&self) -> Result<IRDPSRAPIApplication>;
    fn Shared(&self) -> Result<VARIANT_BOOL>;
    fn SetShared(&self, newval: VARIANT_BOOL) -> Result<()>;
    fn Name(&self) -> Result<BSTR>;
    fn Show(&self) -> Result<()>;
    fn Flags(&self) -> Result<u32>;
}

Required Methods§

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

fn Application(&self) -> Result<IRDPSRAPIApplication>

fn Shared(&self) -> Result<VARIANT_BOOL>

fn SetShared(&self, newval: VARIANT_BOOL) -> Result<()>

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

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

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

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.

Implementors§