pub trait IRDPSRAPIInvitationManager_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, item: &VARIANT) -> Result<IRDPSRAPIInvitation>;
    fn Count(&self) -> Result<i32>;
    fn CreateInvitation(
        &self,
        bstrauthstring: &BSTR,
        bstrgroupname: &BSTR,
        bstrpassword: &BSTR,
        attendeelimit: i32
    ) -> Result<IRDPSRAPIInvitation>;
}

Required Methods§

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

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

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

fn CreateInvitation( &self, bstrauthstring: &BSTR, bstrgroupname: &BSTR, bstrpassword: &BSTR, attendeelimit: i32 ) -> Result<IRDPSRAPIInvitation>

Object Safety§

This trait is not object safe.

Implementors§