pub trait IRDPSRAPIWindow_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§