pub trait IRDPSRAPIInvitation_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ConnectionString(&self) -> Result<BSTR>;
    fn GroupName(&self) -> Result<BSTR>;
    fn Password(&self) -> Result<BSTR>;
    fn AttendeeLimit(&self) -> Result<i32>;
    fn SetAttendeeLimit(&self, newval: i32) -> Result<()>;
    fn Revoked(&self) -> Result<VARIANT_BOOL>;
    fn SetRevoked(&self, newval: VARIANT_BOOL) -> Result<()>;
}

Required Methods§

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

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

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

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

fn SetAttendeeLimit(&self, newval: i32) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§