windows::Win32::System::RealTimeCommunications

Trait IRTCReInviteEvent_Impl

pub trait IRTCReInviteEvent_Impl: IDispatch_Impl {
    // Required methods
    fn Session(&self) -> Result<IRTCSession2>;
    fn Accept(
        &self,
        bstrcontenttype: &BSTR,
        bstrsessiondescription: &BSTR,
    ) -> Result<()>;
    fn Reject(&self) -> Result<()>;
    fn State(&self) -> Result<RTC_REINVITE_STATE>;
    fn GetRemoteSessionDescription(
        &self,
        pbstrcontenttype: *mut BSTR,
        pbstrsessiondescription: *mut BSTR,
    ) -> Result<()>;
}

Required Methods§

fn Session(&self) -> Result<IRTCSession2>

fn Accept( &self, bstrcontenttype: &BSTR, bstrsessiondescription: &BSTR, ) -> Result<()>

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

fn State(&self) -> Result<RTC_REINVITE_STATE>

fn GetRemoteSessionDescription( &self, pbstrcontenttype: *mut BSTR, pbstrsessiondescription: *mut BSTR, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§