pub trait IRDPSRAPIApplication_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Windows(&self) -> Result<IRDPSRAPIWindowList>;
    fn Id(&self) -> Result<i32>;
    fn Shared(&self) -> Result<VARIANT_BOOL>;
    fn SetShared(&self, newval: VARIANT_BOOL) -> Result<()>;
    fn Name(&self) -> Result<BSTR>;
    fn Flags(&self) -> Result<u32>;
}

Required Methods§

fn Windows(&self) -> Result<IRDPSRAPIWindowList>

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§