pub trait IRDPSRAPIAttendee_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Id(&self) -> Result<i32>;
    fn RemoteName(&self) -> Result<BSTR>;
    fn ControlLevel(&self) -> Result<CTRL_LEVEL>;
    fn SetControlLevel(&self, pnewval: CTRL_LEVEL) -> Result<()>;
    fn Invitation(&self) -> Result<IRDPSRAPIInvitation>;
    fn TerminateConnection(&self) -> Result<()>;
    fn Flags(&self) -> Result<i32>;
    fn ConnectivityInfo(&self) -> Result<IUnknown>;
}

Required Methods§

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

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

fn ControlLevel(&self) -> Result<CTRL_LEVEL>

fn SetControlLevel(&self, pnewval: CTRL_LEVEL) -> Result<()>

fn Invitation(&self) -> Result<IRDPSRAPIInvitation>

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

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

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

Object Safety§

This trait is not object safe.

Implementors§